很简单,我的做法是在@RequestMapping中添加produces = "application/json; charset=utf-8"
请看如下代码:
@RequestMapping(value="selectAll",method=RequestMethod.GET,produces = "application/json; charset=utf-8")
@ResponseBody
public String selectAll(){
List<Dwxx> dwxxs = dwxxService.selectAll();
JSONObject jsonObject = new JSONObject();
jsonObject.put("dwxxs", dwxxs);
jsonObject.put("success", true);
return JSON.toJSONString(jsonObject);
}