1. 程式人生 > >Spring4 MVC json問題(406 Not Acceptable)

Spring4 MVC json問題(406 Not Acceptable)

最近使用spring4.0的Mvc,json請求時,客戶端報錯,406 Not Acceptable

解決方法一:

1、匯入第三方的jackson包,jackson-mapper-asl-1.9.7.jar和jackson-core-asl-1.9.7.jar。

2、Spring配置檔案新增:

    <mvc:annotation-driven/>

<!-- 避免IE執行AJAX時,返回JSON出現下載檔案 -->  
    <bean id="mappingJacksonHttpMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">  
        <property name="supportedMediaTypes">  
            <list>  
                <value>text/html;charset=UTF-8</value>  
            </list>  
        </property>  
    </bean>  
  
    <!-- 啟動Spring MVC的註解功能,完成請求和註解POJO的對映 -->  
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">  
        <property name="messageConverters">  
            <list>  
                <ref bean="mappingJacksonHttpMessageConverter" /><!-- json轉換器 -->  
            </list>  
        </property>  
    </bean> 

解決方法二:

1、匯入第三方的fastjson包,fastjson-1.1.34.jar

2、Spring配置檔案新增:

    <mvc:annotation-driven>
        <mvc:message-converters register-defaults="true">
            <!-- 避免IE執行AJAX時,返回JSON出現下載檔案 -->
            <bean id="fastJsonHttpMessageConverter" class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>