搭建SpringMVC(4.1),可是搭建完成之後發現使用@ResponseBody的ajax沒法訪問,老是出現406的問題。java
首先懷疑的是配置問題,通過查明,影響SpringMVC的@ResponseBody註解的是:ajax
<mvc:annotation-driven />,我發現個人配置中存在這個註解。同時又使用Spring文檔中的自動配置相關解析類的方式再進行測試,發現仍是沒有解決問題。spring
同時在網上找到相關問題,發現是缺失jackson的jar。mvc
<dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-lgpl</artifactId> <version>1.9.0</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-lgpl</artifactId> <version>1.9.0</version> </dependency>
因而加上該依賴,但是發現問題仍是沒有解決。app
有參考一下spring 文檔測試
Spring 4 requires the recent Hibernate Validator 4.3+, and support for Jackson has been focused on 2.0+ now (with Jackson 1.8/1.9 support retained for the time being where Spring 3.2 had it; now just in deprecated form).ui
由於我用的是4.1.4的版本,因此已經不支持1.9如下的jackson了,所我使用2.5 版本的jacksonspa
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.5.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.0</version> </dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotation</artifactId> <version>2.5.0</version> </dependency>
問題解決code