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); }
时间: 2024-10-24 02:54:52