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

Spring MVC返回对象JSON

时间:2016-03-21 19:42:58      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

 

 

@RestController 用于返回对象,会自动格式化为JSON

    @RequestMapping("/user2")
    public User2 user2(Model model){
        model.addAttribute("content", hello + "(第二种)");
        User2 user=new User2();
        user.setId(1);
        user.setName("tomas");
        user.setPwd("pwd");
        return user;
    }

 

 

@Control会默认返回jsp页面

想返回对象的话还需要加上@ResponseBody注解

    @RequestMapping("/user2")

 

    @ResponseBody
    public User2 user2(Model model){
        model.addAttribute("content", hello + "(第二种)");
        User2 user=new User2();
        user.setId(1);
        user.setName("tomas");
        user.setPwd("pwd");
        return user;
    }

 

返回结果一致:

{

  • id1,
  • name"tomas",
  • pwd"pwd"
}

 

Spring MVC返回对象JSON

标签:

原文地址:http://www.cnblogs.com/wangdaijun/p/5303115.html

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