首页 > 技术文章 > SpringMVC中返回JSON时乱码的解决方案

lakeslove 原文

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);
    }

推荐阅读