[View] Tag 그대로 출력하기

sungeun·2022년 10월 13일
0
post-thumbnail
[ JSTL ]
As-Is
<c:out value="${form.content}" />
To-Be
<c:out value="${form.content}" escapeXml="false" />
[ Thymeleaf ]
As-Is
<p th:text="${form.content}">
To-Be
<p th:utext="${form.content}">
profile
Back-end Developer

0개의 댓글