Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
<scope>provided</scope>
</dependency>
离线版下载地址 Versions: Lombok - plugin for IntelliJ IDEs | JetBrains https://plugins.jetbrains.com/plugin/6317-lombok/versions
解脱了setter 和 getter容易写作的问题. 注意成员变量尽量不要有isXXX这样的字段, setter getter