本文主要是介绍springmvc中实现POJO转json,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
首先导入三个jackjson jar包,下载地址:
http://download.csdn.net/detail/u011403655/8557305在springmvc配置文件中加入
<mvc:annotation-driven></mvc:annotation-driven>
- 要使用的POJP必须实现geter和seter
- 在控制器方法前加入
@ResponseBody
- 返回所要显示的POJO对象,类似这样:
@ResponseBody@RequestMapping("/testJson")public User getJson() {User user = new User("elin", "elin@e-lin.me", "12345", new Date());return user;}
- 如果需要返回多个对象,则可以返回一个容器
@ResponseBody@RequestMapping("/testJson")public List<User> getJson() {User user1 = new User("elin", "elin@e-lin.me", "12345", new Date());User user2 = new User("tom", "tom@e-lin.me", "2323232", new Date());List<User> list = new ArrayList<User>();list.add(user1);list.add(user2);return list;}
- 访问对应的url,结果如下:
如果报 406错误,描述为
The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request “accept” headers ().
因为没有把jar包导入WEB-INF/lib 中,手动复制到这个文件夹下即可
这篇关于springmvc中实现POJO转json的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!