I am doing a chat project in java with Spring 3.x which needs Multi-language support.
chat project
java
Spring 3.x
Multi-language support
Here is what I have done.
Can you try using produces = "text/plain;charset=UTF-8" in the @RequestMapping
@RequestMapping(value = "/test", method = POST, produces = "text/plain;charset=UTF-8") public @ResponseBody
also check this: UTF-8 encoding problem in Spring MVC