My grails app will not decode request parameters correctly.
In config.groovy:
grails.views.gsp.encoding = "UTF-8"grails.converters.encoding =
"UTF-8"
All my gsp are used contentType="text/html; charset=UTF-8"in the page directive as well as <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />in the head element.
However, when I get the published parameters from the param object in my controller, the application just prints the garbage ...
I am using Grails version 1.3.7 deployed on top of Tomcat 5. Other installed plugins besides tomcat:
hibernate 1.3.7 jquery 1.7.1 spring-security-core 1.2.6 webxml 1.4
EDIT: from further debugging, I noticed that the application will work fine in the dock. Therefore, I suspect that this is a problem with the cat. My problem is similar to this post (alas, I do not use the Shiro plugin).
Can anyone help with this?