码迷,mamicode.com
首页 > Web开发 > 详细

HTTP Status 406 --- not acceptable according to the request "accept" headers

时间:2014-10-14 13:53:28      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   使用   ar   sp   div   

The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.

使用以下方案解决

springmvc json配置方案

Spring4.1.0

使用<annotation-driven />MVC配置方法。

在pom.xml中增加

 1      <dependency>
 2             <groupId>com.fasterxml.jackson.core</groupId>
 3             <artifactId>jackson-core</artifactId>
 4             <version>2.4.3</version>
 5         </dependency>
 6         <dependency>
 7             <groupId>com.fasterxml.jackson.core</groupId>
 8             <artifactId>jackson-databind</artifactId>
 9             <version>2.4.3</version>
10         </dependency>
11         <dependency>
12             <groupId>com.fasterxml.jackson.core</groupId>
13             <artifactId>jackson-annotations</artifactId>
14             <version>2.4.3</version>
15         </dependency>

controller方法中增加@org.springframework.web.bind.annotation.ResponseBody注解

可以解决标题中的问题

HTTP Status 406 --- not acceptable according to the request "accept" headers

标签:style   blog   http   color   io   使用   ar   sp   div   

原文地址:http://www.cnblogs.com/javaleon/p/4023842.html

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