Get Parameter Encoding
问题 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! 回答1: What about this? Could it help? In your