概述
最近的项目中使用springMVC,在前台页面中报406 not acceptable的错误.
在controller层的代码
@RequestMapping("/item/list")
@ResponseBody
public EUDataGridResult getItemList(Integer page, Integer rows) {
EUDataGridResult result = itemService.getItemList(page, rows);
return result;
}
在controller层的result中能获取到值,但是在前台页面报如下的错:
解决方法:
由于设置了@ResponseBody,要把对象转换成json格式,缺少转换依赖的jar包,需要在pom文件中,添加jar包的引用.jackson-core-2.8.1jar,jackson-databind-2.4.2jar,jackson-annotations-2.4.0-jar
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.4.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.4.0</version>
</dependency>
springmvc的配置文件中是<mvc:annotation-driven />即可.
转载于:https://www.cnblogs.com/chenxiaochan/p/7253408.html
最后
以上就是震动咖啡豆为你收集整理的SpringMVC:解决406 not acceptable的全部内容,希望文章能够帮你解决SpringMVC:解决406 not acceptable所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复