Hello,
I am using Spring 3.0.3 + sitemesh + JSP and I am experiencing troubles with encoding of result page.
I have used Spring's CharacterEncodingFilter to encode response and request with UTF-8, I have stated in JSTLViewResolver appropriate contentType. I also have saved my jsp's and tag's in UTF-8 format.
What I would really want to avoid is stating at every jsp and tag file directive with pageEncoding like
<%@ tag pageEncoding='UTF' %>
Is there a way to avoid that?
Thanks