标签:span integer post ati page rod springmvc div ret
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); }
标签:span integer post ati page rod springmvc div ret
原文地址:http://www.cnblogs.com/lakeslove/p/7041258.html