解决springMvc控制台输出正常,html页面乱码的问题,在@requestMapping添加produces=”text/html;charset=utf-8” 例如:
@Controller
@RequestMapping(value=
"/goods",produces=
"text/html;charset=utf-8")
public class GoodsController {
@Autowired
private GoodsService goodsService;
@ResponseBody
@RequestMapping(
"/getAllGoods")
public String
getAllGoods(){
List<goods> allGoods=goodsService.selectAll();
JSONArray json = JSONArray.fromObject(allGoods);
return json.toString();
}
}
转载请注明原文地址: https://ju.6miu.com/read-968465.html