My Java web application submits an AJAX request that returns JSON such:
{\'value\': \'aériennes\'}
When \'aériennes\' is displayed in the w
finally I got the solution:
Only put this line
@RequestMapping(value = "/YOUR_URL_Name",method = RequestMethod.POST,produces = "application/json; charset=utf-8")
this will definitely help.