springmvc .html请求返回解决406问题

来源:互联网 发布:卖家网数据套餐 编辑:程序博客网 时间:2024/05/20 23:38
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<!-- 配置Fastjson支持 -->
<bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>  
                      <value>application/json;charset=UTF-8</value>  
                      <value>text/html;charset=UTF-8</value>  
                  </list>
</property>

<property name="features">

   <list>
<value>WriteMapNullValue</value>
<value>QuoteFieldNames</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>

原创粉丝点击