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

spring mvc 处理接收的map 转换为 json 格式

时间:2014-08-04 20:50:37      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   代码   div   log   

开发中会遇到传递的map 参数以json 格式处理 ,springMVC中配置如下代码即可实现

 <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
               <!-- JSON解析对象 -->  
                <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
                </bean>
            </list>
        </property>
    </bean>

 

spring mvc 处理接收的map 转换为 json 格式,布布扣,bubuko.com

spring mvc 处理接收的map 转换为 json 格式

标签:style   blog   http   color   io   代码   div   log   

原文地址:http://www.cnblogs.com/cyanqx/p/3890653.html

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