Using Lombok
willardgibbs opened this issue · 0 comments
willardgibbs commented
Cool features:
@Log4j2
vsprivate static final Logger logger = LogManager.getLogger(ClassName.class);
@Getter
and@Setter
on class or field. These annotations are generated by getters and setters based on the field name. This will reduce the amount of code and make it better to think about the names of variables.@NoArgsConstructor
,@RequiredArgsConstructor
and@AllArgsConstructor
@Data
- do all for you :-)- FYI: https://projectlombok.org/