在springMVC controller中返回json數據出現亂碼問題,因為沒有進行編碼,只需要簡單的註解就可以了 在@RequestMapping()中加入produces="text/html;charset=UTF-8"屬性即可,如下: ...
在springMVC controller中返回json數據出現亂碼問題,因為沒有進行編碼,只需要簡單的註解就可以了
在@RequestMapping()中加入produces="text/html;charset=UTF-8"屬性即可,如下:
@RequestMapping(value="/respost",method=RequestMethod.GET,produces="text/html;charset=UTF-8") @ResponseBody public String postList(@RequestParam("topicId") String topicId){ List<Post> posts=new ArrayList<Post>(); System.out.println("topicId-----"+topicId); posts=postService.findPostList(topicId); JSONArray postJson=JSONArray.fromObject(posts); return postJson.toString(); }