Jackson常用注解

注解所依赖的jar

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

1.@JsonIgnore
Jackson 在处理时忽略该属性,不返回出去
如下,忽略name属性

 @JsonIgnore
 private String name;

2.@JsonIgnoreProperties
作用和@JsonIgnore差不多,此注解可以同时忽略多个,如下所示

@JsonIgnoreProperties(value={"name","age"})
public class User{
    private String name;

    private String address;

    private Integer age;

}

3.@JsonIgnoreType
该标注在类上,当其他类有该类作为属性时,该属性将被忽略。

4.@JsonProperty
该注解类似于取别名,字段名字不变,返回出去就换一个名字,如下

public class User{
    @JsonProperty("un")
    private String userName;
}

5.@JsonInclude
该注解是当属性不为null返回出去,如
这是加到类上的,所以字段都生效,某一个就加字段上

@JsonInclude(JsonInclude.Include.NON_NULL)
public class User{
    private String name;
    private String address;
}

6.@JsonFormat
Date类型的数据自动转换我们想要的字符串时间格式

@JsonFormat(shape=JsonFormat.Shape.STRING, 
pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date time;

7.@DateTimeFormat
只要传入指定的时间格式,就会自动转成Data类型的时间

@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
private Date time;

上面的 getter,setter 等都省略了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值