springboot中使用@data注解,减少一些不必要代码

Posted yeluowuti

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中使用@data注解,减少一些不必要代码相关的知识,希望对你有一定的参考价值。

一、idea安装lombok

技术图片

技术图片

 

二、重启idea

三、添加maven依赖(pom.xml)

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.10</version>
</dependency>

四、实体类

@Data
public class Base implements Serializable {

private String result;
private Object data;
private String success;

private static Base createResult(String result,Object data,String success){

BaseResult baseResult=new BaseResult();
baseResult.setResult(result);
baseResult.setData(data);
baseResult.setSuccess(success);
return baseResult;
}

五、扩展

@Data : 注解在类上, 为类提供读写属性, 此外还提供了 equals()、hashCode()、toString() 方法@Getter/@Setter : 注解在类上, 为类提供读写属性@ToString : 注解在类上, 为类提供 toString() 方法
@Slf4j : 注解在类上, 为类提供一个属性名为 log 的 log4j 的日志对象
@Log4j : 注解在类上, 为类提供一个属性名为 log 的 log4j 的日志对象

以上是关于springboot中使用@data注解,减少一些不必要代码的主要内容,如果未能解决你的问题,请参考以下文章

springboot使用@data注解

SpringBoot分组校验及自定义校验注解

springboot 使用 lombok插件中的@data 注解

@Data 注解作用JavaBean

springboot~lombok使用总结

最全的SpringBoot注解