i've got this in my web.xml
<context-param>
<param-name>defaultHtmlEscape</param-name>
<param-value>true</param-value>
</context-param>
and this in a jsp
<spring:htmlEscape defaultHtmlEscape="true" />
Still I can put <font color="red">this is red</font>
in a form and see red text on the website.
I am using EL and Taglibs to access my variables in the jsps. E.g. <h3>${someThing.title}</h3>
Why is this not working, what shall I do? Wrapping every EL-expression in some wrapper bloats the code and is very error prone...