标签: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