I'm developing a Spring MVC app and I'm having some issues with enconding.
Here's the problem: on the browser I type "João" and after I submit the form, on the Controller I've got "João". My Firefox is configured to UTF-8 and so my Eclispe. If I check the sent paramenters using Firebug the value still correct.
Here's my encoding config:
On the web.xml, the first thing I have:
<filter>
<filter-name>encoding-filter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<locale-encoding-mapping-list>
<locale-encoding-mapping>
<locale>pt-BR</locale>
<encoding>UTF-8</encoding>
</locale-encoding-mapping>
<locale-encoding-mapping>
<locale>pt</locale>
<encoding>UTF-8</encoding>
</locale-encoding-mapping>
<locale-encoding-mapping>
<locale>en</locale>
<encoding>UTF-8</encoding>
</locale-encoding-mapping>
</locale-encoding-mapping-list>
<filter-mapping>
<filter-name>encoding-filter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
On the JSP:
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
On the form:
<form:form method="post" ... acceptCharset="UTF-8">
On the servelt-context.xml:
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
<beans:property name="contentType" value="text/html;charset=UTF-8" />
</beans:bean>
Inside my pom.xml (Maven):
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java-version>1.6</java-version>
<org.springframework-version>3.1.0.RELEASE</org.springframework-version>
<org.aspectj-version>1.6.10</org.aspectj-version>
<org.slf4j-version>1.6.1</org.slf4j-version>
</properties>
To call the server I'm using JQuery load() function like this:
var params = form.serialize();
$.ajaxSetup({
contentType: 'text/html; charset=UTF-8'
});
$("#content").load(url, params);
I included this $.ajaxSetup as I desperated attempt, but it has no effect.
I noticed that on the params I have this "João" as "Jo%C3%83%C2%A3o". I changed back to "João" using Firebug but still getting the same issue.
EDIT: also included URIEncoding="UTF-8" on my apache-tomcat-7.0.27\conf\server.xml:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8" />
Any magic ideas?
Thanks in advance.