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

spring----@ResponseBody注解

时间:2019-05-21 10:53:54      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:ack   fast   nbsp   封装   abi   图片   image   artifact   需要   

技术图片

 

自动将数据封装成json格式的数据返回回去

Maven

        <!-- Json Begin -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </dependency>
 <!-- Json End -->

  

如果不需要摸个字段被打包的话

使用@JsonIgnore注解get方法上

前提必须有这个依赖(上面已经有了)

 <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
</dependency>

技术图片

 

spring----@ResponseBody注解

标签:ack   fast   nbsp   封装   abi   图片   image   artifact   需要   

原文地址:https://www.cnblogs.com/yanxiaoge/p/10898299.html

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