在springMVC controller中返回json數據出現亂碼問題,由於沒有進行編碼,只須要簡單的註解就能夠了html
在@RequestMapping()中加入produces="text/html;charset=UTF-8"屬性便可,以下:spring
@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(); }