I have an application web.xml with the following entry:
<error-page>
<error-code>404</error-code>
<location>/system_files/error/p_notfound.jsp</location>
</error-page>
However, when this page is displayed, Japanese characters are garbled.
The same page (p_notfound.jsp) displays properly if displayed directly or even through the servlet filter.
I tried adding a filter to:
request.setCharacterEncoding("UTF8");
But that doesn't help. Any ideas?