码迷,mamicode.com
首页 > Web开发 > 详细

@ResponseBody 返回中文乱码问题解决 spingmvc

时间:2016-07-21 09:52:03      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:

<!-- UTF8解决乱码问题 -->
	    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">  
        <property name="messageConverters">  
            <list>  
                <bean class="org.springframework.http.converter.StringHttpMessageConverter">  
                    <property name="supportedMediaTypes">  
                        <list>  
                            <value>text/html;charset=UTF-8</value>  
                        </list>  
                    </property>  
                </bean>  
            </list>  
        </property>  
    </bean>  

 sping-mvc.xml 中增加上面的代码,放到mvc:annotation-driven 节点上面,问题解决!

@ResponseBody 返回中文乱码问题解决 spingmvc

标签:

原文地址:http://www.cnblogs.com/hoge/p/5690572.html

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