mq-java-exporter
mq-java-exporter copied to clipboard
Using Lombok
Cool features:
-
@Log4j2vsprivate static final Logger logger = LogManager.getLogger(ClassName.class); -
@Getterand@Setteron 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,@RequiredArgsConstructorand@AllArgsConstructor -
@Data- do all for you :-) - FYI: https://projectlombok.org/