博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring MVC返回对象JSON
阅读量:5831 次
发布时间:2019-06-18

本文共 548 字,大约阅读时间需要 1 分钟。

 

 

 

@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;
    }

 

返回结果一致:

{
  • id
    1,
  • name
    "tomas",
  • pwd
    "pwd"
}

 

转载地址:http://ysedx.baihongyu.com/

你可能感兴趣的文章
Windows XP倒计时到底意味着什么?
查看>>
tomcat一步步实现反向代理、负载均衡、内存复制
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>
java中回调函数以及关于包装类的Demo
查看>>
maven异常:missing artifact jdk.tools:jar:1.6
查看>>
终端安全求生指南(五)-——日志管理
查看>>
Nginx 使用 openssl 的自签名证书
查看>>
创业维艰、守成不易
查看>>
PHP环境安装套件:快速安装LAMP环境
查看>>
CSS3
查看>>
ul下的li浮动,如何是ul有li的高度
查看>>
C++ primer plus
查看>>
python mysqlDB
查看>>
UVALive 3942 Remember the Word Tire+DP
查看>>
从微软的DBML文件中我们能学到什么(它告诉了我们什么是微软的重中之重)~目录...
查看>>
被需求搞的一塌糊涂,怎么办?
查看>>
c_数据结构_队的实现
查看>>
jquery 选择器总结
查看>>
Qt设置背景图片
查看>>