1. 程式人生 > >spring 3.2 MVC 406 Not Acceptable

spring 3.2 MVC 406 Not Acceptable

出現這種情況有三種可能

1、缺少maven依賴關係或者jar包:jackson-annotations.jar,jackson-core.jar,jackson-databind.jar 這三個包版本不能低於1.9.3,否則會報406.最好是2.0以上的。本人就是架包版本低了,低階錯誤不能犯啊。

2、spring-mvc.xml中

把 spring-mvc-3.0.xsd 更新到 spring-mvc-3.2.xsd 即

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans          http://www.springframework.org/schema/beans/spring-beans-3.0.xsd          http://www.springframework.org/schema/context          http://www.springframework.org/schema/context/spring-context-3.0.xsd          http://www.springframework.org/schema/aop          http://www.springframework.org/schema/aop/spring-aop-3.0.xsd          http://www.springframework.org/schema/tx           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd         http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"><mvc:annotation-driven/>

3、controller中方法沒有配置@ResponseBody