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

springmvc4.2.X fastjson 替换引用配置

时间:2017-09-11 13:15:29      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:port   ring   iat   bean   span   nconf   替换   def   ble   

 1 <mvc:annotation-driven>
 2         <mvc:message-converters register-defaults="true">
 3             <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter4" >
 4                 <property name="supportedMediaTypes">
 5                     <list>
 6                         <value>text/html;charset=UTF-8</value>
 7                         <value>application/json</value>
 8                     </list>
 9                 </property>
10                 <property ref="fastJsonConfig" name="fastJsonConfig">
11                 </property>
12             </bean>
13         </mvc:message-converters>
14     </mvc:annotation-driven>
15     <bean id="fastJsonConfig" class="com.alibaba.fastjson.support.config.FastJsonConfig">
16         <property name="serializerFeatures">
17             <list>
18                 <value>DisableCircularReferenceDetect</value>
19             </list>
20         </property>
21         <property name="dateFormat" value="yyyy-MM-dd HH:mm:ss"></property>
22     </bean>

 

springmvc4.2.X fastjson 替换引用配置

标签:port   ring   iat   bean   span   nconf   替换   def   ble   

原文地址:http://www.cnblogs.com/wanghaoblogs/p/7504354.html

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