码迷,mamicode.com
首页 > 编程语言 > 详细

Spring4 MVC json问题(406 Not Acceptable)

时间:2017-11-14 11:16:43      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:gis   客户端   http   文件   type   方法   nbsp   ble   lis   

最近使用spring4.0的Mvc,json请求时,客户端报错,406 Not Acceptable

解决方法:

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>

 

Spring4 MVC json问题(406 Not Acceptable)

标签:gis   客户端   http   文件   type   方法   nbsp   ble   lis   

原文地址:http://www.cnblogs.com/wanyong-wy/p/7830864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!