springmvc获取json Failed to load resource: the server responded with a status of 406 (Not Acceptable)

使用springmvc3.1版本时通过@ResponseBody标签返回JSON数据的方法都报406错: Failed to load resource: the server responded with a status of 406 (Not Acceptable) 经过调试发现少了jackson-core-asl和jackson-mapper-asl两jar包,导入了1.9版本的jar后,问题解决了。

若get提交方式乱码处理(一般是由于tomcat引起的,所以需要设置tomcat的编码)

改tomcat中server.xml中的配置,加上一个 URIEncoding=”utf-8” 如下所示:

原文链接:https://blog.csdn.net/wangqing84411433/article/details/72814523
https://blog.csdn.net/liuxiao723846/article/details/46897319

你可能感兴趣的:(踩过的坑)