SpringBoot @JsonIgnoreProperties、@JsonIgnore、@JsonFormat注解的简单使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot @JsonIgnoreProperties、@JsonIgnore、@JsonFormat注解的简单使用相关的知识,希望对你有一定的参考价值。

参考技术A 类上添加了@JsonIgnoreProperties(value = "password") 注解,即忽略password字段,不会返回password

@JsonIgnore注解用来忽略某些字段,可以用在变量或者Getter方法上,用在Setter方法时,和变量效果一样。这个注解一般用在我们要忽略的字段上。

@JsonIgnoreProperties(ignoreUnknown = true),将这个注解写在类上之后,就会忽略类中不存在的字段。这个注解还可以指定要忽略的字段,例如@JsonIgnoreProperties( “password”, “secretKey” )

@JsonFormat可以帮我们完成格式转换。例如对于Date类型字段,如果不适用JsonFormat默认在rest返回的是long,如果我们使用@JsonFormat(timezone = “GMT+8”, pattern = “yyyy-MM-dd HH:mm:ss”),就返回"2018-11-16 22:58:15"

comment、fullName、address属性被忽略了,regDate的格式进行转换

springboot学习目录

一、Spring Boot入门

二、Spring Boot配置

三、Spring Boot与日志

四、Spring Boot与Web开发

五、Spring Boot与Docker

六、Spring Boot与数据访问

七、Spring Boot启动配置原理

八、Spring Boot自定义starters

以上是关于SpringBoot @JsonIgnoreProperties、@JsonIgnore、@JsonFormat注解的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot入门到精通-SpringBoot自动配置原理

SpringBoot入门到精通-SpringBoot启动流程

SpringBoot入门到精通-SpringBoot自定义starter

SpringBoot.06.SpringBoot日志管理

SpringBoot.06.SpringBoot日志管理

最全面的SpringBoot教程——SpringBoot概述