SpringMVC中返回JSON时乱码的解决方案

springMVC中返回JSON会出现乱码,解决如下:

produces = "text/html;charset=UTF-8"
@ResponseBody
    @RequestMapping(value = { "searchUsers.htm" },method = RequestMethod.POST,produces = "text/html;charset=UTF-8")
    public String searchUsers(@ModelAttribute User user,Integer currentPage) throws JsonGenerationException, JsonMappingException, IOException {
        PageData<User> pageData = userService.serchUsers(user,currentPage);
        return JSONUtil.getEscapeJSONString(pageData);
    }

 

posted @ 2017-06-17 20:30  lakeslove  阅读(225)  评论(0编辑  收藏  举报