Intellij
安装Lombok插件
配置Intellij
Build -> Compiler -> Annotation Processors,启用Enable annotation processing
pom.xml
1 | <dependency> |
注解
1 | and / 自动为属性提供 Set 和 Get 方法 |
其中使用最频繁的是@Data,@Slf4j
安装Lombok插件
配置Intellij
Build -> Compiler -> Annotation Processors,启用Enable annotation processing
1 | <dependency> |
1 | @Getter and @Setter / 自动为属性提供 Set 和 Get 方法 |
其中使用最频繁的是@Data,@Slf4j