@ResponseBody将集合数据转换为json格式并返回给客户端
Posted java_pro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@ResponseBody将集合数据转换为json格式并返回给客户端相关的知识,希望对你有一定的参考价值。
spring-mvc.xml:
<beans xmlns:mvc="http://www.springframework.org/schema/mvc" > <mvc:annotation-driven/>
或者:
<mvc:annotation-driven> <mvc:message-converters register-defaults="false"> <bean id="fastJsonHttpMessageConverter" class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>text/html;charset=UTF-8</value> <value>application/json;charset=UTF-8</value> </list> </property> </bean> </mvc:message-converters> </mvc:annotation-driven>
js代码:
$.post("${pageContext.request.contextPath}/getJson",{},function(data){ alert(JSON.stringify(data)); });
java代码:
@RequestMapping("/getJson") @ResponseBody public List<User> getJson(){ List<User> list = new ArrayList<User>(); User user1 = new User(10, "刘德华", 45); User user2 = new User(12, "张学友", 46); list.add(user1); list.add(user2); return list; }
导入jackson的Jar包
或者fastjson的Jar包
以上是关于@ResponseBody将集合数据转换为json格式并返回给客户端的主要内容,如果未能解决你的问题,请参考以下文章