码迷,mamicode.com
首页 > 其他好文 > 详细

Could not find acceptable representation

时间:2014-08-05 00:14:08      阅读:754      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   art   问题   ar   

引起的原因: 
   由于设置了@ResponseBody,要把对象转换成json格式,缺少转换依赖的jar包,故此错。

解决办法: 

1 <dependency>
2             <groupId>org.codehaus.jackson</groupId>
3             <artifactId>jackson-core-asl</artifactId>
4         </dependency>
5         <dependency>
6             <groupId>org.codehaus.jackson</groupId>
7             <artifactId>jackson-mapper-asl</artifactId>
8         </dependency>

   加入依赖的jar,jackson-core-asl-1.9.12.jar,jackson-mapper-asl-1.9.12.jar问题解决。

 

参考博客:http://jadethao.iteye.com/blog/1926525

Could not find acceptable representation,布布扣,bubuko.com

Could not find acceptable representation

标签:style   blog   http   color   io   art   问题   ar   

原文地址:http://www.cnblogs.com/enshrineZither/p/3891097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!