I'm having problems with the character encoding of my webapp and would like to know how I can go about changing the default encoding of tomcat on the Linux production server to match the cp 1252 encoding of the dev server on windows (or at least experiment with different encoding until I can find the right one).
Thanks
Add this to your catalina.sh script:
Also in conf/server.xml you want to make this change so the URI encoding is set accordingly:
If you use servlet filters you could add a call to response.setCharacterEncoding("Cp1252"); to all responses. If the response contains characters then your chosen encoding will be used.
response.setCharacterEncoding("Cp1252");
Please see https://tomcat.apache.org/tomcat-8.5-doc/servletapi/javax/servlet/ServletResponse.html#setCharacterEncoding(java.lang.String)