Sorry I took my time to answer...
SO yes I am using that already, but what I did to fix everything is to create a new filter and to reset everything to UTF-8 on all responses...
Code:
private String encoding;
public void setEncoding(String encoding){
this.encoding = encoding;
}
public void doFilter(ServletRequest sRequest, .....){
HttpServletRequest request = (HttpServletRequest) sRequest;
HttpServletRequest response = (HttpServletResponse) sResponse;
response.setContentType("text/html; charset="+this.encoding);
response.setCharacterEncoding(this.encoding);
filterChain.doFilter(request, response);
}
It worked... And the "CharacterEncodingFilter" from Spring wasn't enough... It didn't set the content type...
But thanks a lot!!