Lombok

From NovaOrdis Knowledge Base
Revision as of 21:05, 8 October 2018 by Ovidiu (talk | contribs) (→‎@Slf4j)
Jump to navigation Jump to search

Overview

Lombok is a Java annotation library that helps reduce boilerplate code.

Annotations

@Slf4j

The annotation generates a SLF4J Logger in the class. It has the same effect as if you were to explicitly add the following lines within the class:

private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(MyClass.class);

@Data

Generates getters and setters for member variables.