11

I have a problem using spring mvc and special chars in a GET request. Consider the following method:

@RequestMapping("/update")
public Object testMethod(@RequestParam String name) throws IOException {
    }

to which I send a GET request with name containing an "ä" (german umlaut), for instance. It results in spring receiving "ä" because the browser maps "ä" to %C3%A4.

So, how can I get the correct encoded string my controller?

Thanks for your help!

Erik
  • 11,944
  • 18
  • 87
  • 126

2 Answers2

44

You're having this problem, because the request differentiates between body encoding and URI encoding. A CharacterEncodingFilter sets the body encoding, but not the URI encoding.

You need to set URIEncoding="UTF-8" as an attribute in all your connectors in your Tomcat server.xml. See here: http://tomcat.apache.org/tomcat-6.0-doc/config/ajp.html

Or, alternatively, you can set useBodyEncodingForURI="True".

If you're using the maven tomcat plugin, just add this parameter:

mvn -Dmaven.tomcat.uriEncoding=UTF-8 tomcat:run

vicox
  • 541
  • 3
  • 4
7

What about this? Could it help?

In your web.xml:

    <filter>
        <filter-name>CharacterEncodingFilter</filter-name>
        <filter-class>com.example.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>

    <filter-mapping>
        <filter-name>CharacterEncodingFilter</filter-name>
        <servlet-name>dispatcher</servlet-name>
    </filter-mapping>

com.example.CharacterEncodingFilter:

public class CharacterEncodingFilter implements Filter {

    protected String encoding;

    public void init(FilterConfig filterConfig) throws ServletException {
        encoding = filterConfig.getInitParameter("encoding");
    }

    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse,
            FilterChain filterChain) throws IOException, ServletException {

        HttpServletRequest request = (HttpServletRequest) servletRequest;
        request.setCharacterEncoding(encoding);

        filterChain.doFilter(servletRequest, servletResponse);
    }

    public void destroy() {
        encoding = null;
    }

}
Rihards
  • 10,241
  • 14
  • 58
  • 78
  • 2
    I have already tried the filter org.springframework.web.filter.CharacterEncodingFilter which comes with spring and does what you describe. Unfortunately without a result. – Erik Mar 27 '11 at 11:11
  • Very strange.. Can't figure out what else it could be. – Rihards Mar 27 '11 at 12:49
  • 1
    Perhaps the data coming from the browser *is not utf-8* because the form page *is not utf-8*. – bmargulies Mar 28 '11 at 15:01
  • 5
    For later readers: I tried this but it works only with POST not with GET. – stacker May 13 '13 at 08:54