Category: lombok

Lombok configuration in eclipse

Lombok automates getter,setter, equals and logging in java project. Add the following lombok dependency to pom.xml <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> You might face compilation issues or some red color…