为了配合ECS 把原来房子BAE中的代码从新构建,发现发送JSON数据与EXTJS不配合,找了好久发现CSDN上有篇文章正好解决了,庆幸有互联网。
html
用的是第二中方法
web
原帖:http://blog.csdn.net/woshiwanxin102213/article/details/37521303spring
最近使用spring4.0的Mvc,json请求时,客户端报错,406 Not Acceptablejson
解决方法一:mvc
一、导入第三方的jackson包,jackson-mapper-asl-1.9.7.jar和jackson-core-asl-1.9.7.jar。app
二、Spring配置文件添加:spa
<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>
解决方法二:
.net
一、导入第三方的fastjson包,fastjson-1.1.34.jarcode
二、Spring配置文件添加:orm
<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>