In Spring we can escape HTML in all JSP pages generated by < form > tags.
For entire application put below lines in your web.xml
<context-param>
<param-name>defaultHtmlEscape</param-name>
<param-value>true</param-value>
</context-param>
For more details see the below stackoverflow thread
No comments:
Post a Comment