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?- @RequestMapping("/listAll"
- @ResponseBody
- public Map<String, Object> listAll() {
- List<Device> list = deviceService.listAll();
- if (list != null) {
- Map<String, Object> result = new HashMap<String, Object>();
- result.put("total", list.size());
- result.put("rows", list);
- return result;
- }
- returnnull;
- }
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?- <dependency>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-mapper-asl</artifactId>
- <version>1.9.10</version>
- </dependency>
\spring-webmvc-4.0.9.RELEASE-sources\org\springframework\web\servlet\view\json\MappingJacksonJsonView.java
- import org.codehaus.jackson.JsonEncoding;
- import org.codehaus.jackson.JsonGenerator;
- import org.codehaus.jackson.map.ObjectMapper;
- import org.codehaus.jackson.map.SerializationConfig;
而4.1.0開始,使用了:
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.5.1</version>
- </dependency>
spring-webmvc-4.1.0.RELEASE-sources\org\springframework\web\servlet\view\json\AbstractJackson2View.java
- import com.fasterxml.jackson.annotation.JsonView;
- import com.fasterxml.jackson.core.JsonEncoding;
- import com.fasterxml.jackson.core.JsonGenerator;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import com.fasterxml.jackson.databind.SerializationFeature;
6.解決問題
引入fasterxml的jar包,改回spring4.1.4,問題解決。
7.後記:就在要發表文章的時候,在下方預覽中看到一篇
為什麼不讓我早點看到。。。