디비에서 가져온 값의 ‘\n’을 <br>로 변경시키기위해선
아래의 내용을 jsp파일에 세팅한후 적용한다. fn:replace에 직접 ‘\n’ or ‘\\n’ 해도 안먹힘
<!-- fn:replace 의 \n <br> 변환하기위한 세팅 --> <jsp:scriptlet> pageContext.setAttribute("newline", "\n"); </jsp:scriptlet> ${fn:replace(str문자열, newline, "<br/>")}