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

springMVC 【@response 返回对象自动变成json并且防止乱码】 & 【配置支持实体类中的@DateTimeFormat注解】

时间:2015-08-11 18:39:49      阅读:1050      评论:0      收藏:0      [点我收藏+]

标签:

在springmvc的配置文件中加上这一段即可

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" >
        <!-- 本文关键内容-->
     <property name="messageConverters">    
    <list>  
         <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter" >
             <property name="supportedMediaTypes"> 
                 <value>text/html;charset=UTF-8</value>
             </property>
         </bean>  
    </list>   
    </property> 

     <!-- 支持@DateTimeFormat(pattern="yyyy-MM-dd")等注解  2015年7月31日11:07:03 liuyx-->
     <property name="webBindingInitializer">  
    <bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">  
        <property name="conversionService">  
            <bean class="org.springframework.format.support.FormattingConversionServiceFactoryBean"></bean>  
        </property>  
    </bean>  
    </property>
 </bean>

 

springMVC 【@response 返回对象自动变成json并且防止乱码】 & 【配置支持实体类中的@DateTimeFormat注解】

标签:

原文地址:http://www.cnblogs.com/flying607/p/4721582.html

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