爲了配合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>