1. 程式人生 > >Spring MVC 4.1.4 RESTFUL風格返回JSON資料406錯誤處理 .

Spring MVC 4.1.4 RESTFUL風格返回JSON資料406錯誤處理 .

今天在使用spring4.1.4,使用ResponseBody註解返回JSON格式的資料的時候遇到406錯誤。

解決辦法,匯入jackson2.X的jar包:

jackson-annotations-2.4.4.jar、jackson-core-2.4.4.jar、jackson-databind-2.4.4.jar。

spring mvc4.1.4使用了jackson2來處理JSON,jackson2的jar包為以上三個,匯入之後問題解決。

1.問題現象Tomcat7+Spring4.1.4,返回json字串時發生406錯誤

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


HTTP Status 406 -

type Status report

message

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

Apache Tomcat/7.0.52

2.具體實現

[java] view plaincopyprint?
  1. @RequestMapping("/listAll"
    )  
  2. @ResponseBody
  3. public Map<String, Object> listAll() {  
  4.   List<Device> list = deviceService.listAll();  
  5. if (list != null) {  
  6.     Map<String, Object> result = new HashMap<String, Object>();  
  7.     result.put("total", list.size());  
  8.     result.put("rows", list);  
  9. return result;  
  10.   }  
  11. returnnull;  
  12. }  

3.網上調查

 按照問題現象在網上搜了一下類似問題不少,代表性的有以下幾篇:

前兩篇無法解決問題,將第三篇的例子下載下來,執行,成功返回json資料

4.定位

因為例子中用了spring3.2,所以懷疑是spring版本問題。對Spring版本進行替換測試,降到4.0.9時,成功返回json字串。

5.查詢根源

下載4.0.9和4.1.0的spring-webmvc原始碼進行對比。

看到在json處理時稍有不同。

4.0.9使用了網上所說的:

[html] view plaincopyprint?在CODE上檢視程式碼片派生到我的程式碼片
  1. <dependency>
  2. <groupId>org.codehaus.jackson</groupId>
  3. <artifactId>jackson-mapper-asl</artifactId>
  4. <version>1.9.10</version>
  5. </dependency>

\spring-webmvc-4.0.9.RELEASE-sources\org\springframework\web\servlet\view\json\MappingJacksonJsonView.java

[java] view plaincopyprint?在CODE上檢視程式碼片派生到我的程式碼片
  1. import org.codehaus.jackson.JsonEncoding;  
  2. import org.codehaus.jackson.JsonGenerator;  
  3. import org.codehaus.jackson.map.ObjectMapper;  
  4. import org.codehaus.jackson.map.SerializationConfig;  


而4.1.0開始,使用了:

[html] view plaincopyprint?在CODE上檢視程式碼片派生到我的程式碼片
  1. <dependency>
  2. <groupId>com.fasterxml.jackson.core</groupId>
  3. <artifactId>jackson-databind</artifactId>
  4. <version>2.5.1</version>
  5. </dependency>

spring-webmvc-4.1.0.RELEASE-sources\org\springframework\web\servlet\view\json\AbstractJackson2View.java

[java] view plaincopyprint?在CODE上檢視程式碼片派生到我的程式碼片
  1. import com.fasterxml.jackson.annotation.JsonView;  
  2. import com.fasterxml.jackson.core.JsonEncoding;  
  3. import com.fasterxml.jackson.core.JsonGenerator;  
  4. import com.fasterxml.jackson.databind.ObjectMapper;  
  5. import com.fasterxml.jackson.databind.SerializationFeature;  

6.解決問題

引入fasterxml的jar包,改回spring4.1.4,問題解決。

7.後記:就在要發表文章的時候,在下方預覽中看到一篇

為什麼不讓我早點看到。。。