Top "Lombok" questions

Project Lombok is a tool for reducing boilerplate code in Java through annotations and compile time code generation.

java: log cannot be resolved

i meet a problem I use IntelliJ IDEA 2017.3.1 Build #IU-173.3942.27, built on December 11, 2017 JRE: 1.8.0_111-b14 amd64 JVM: Java HotSpot(TM) 64…

java intellij-idea lombok intellij-lombok-plugin
Why is Lombok @Builder not compatible with this constructor?

I have this simple code: @Data @Builder public class RegistrationInfo { private String mail; private String password; public RegistrationInfo(RegistrationInfo registrationInfo) { …

java lombok
IntelliJ highlights Lombok generated methods as “cannot resolve method”

I am using Lombok’s @Data annotation to create the basic functionality of my POJOs. When I try to use …

java intellij-idea lombok
Lombok 1.18.0 and Jackson 2.9.6 not working together

The deserialization is failing after the update. I updated my micro-service from Spring 1.5.10.RELEASE to Spring 2.0.3.RELEASE and also updated …

java spring-boot jackson lombok jackson-databind
@JsonIgnore with @Getter Annotation

Can i use @JsonIgnore with @Getter annotation from lombok without explicitly define the getter, because i have to use this …

java json jackson lombok
Immutable Lombok annotated class with Jackson

What is the preferred way to create class that is Immutable Can be serialized/deserialized with Jackson Human-readable and with …

java json jackson lombok jackson-databind
Lombok plugin incompatible with 2018.1 Intellij Idea

Right now I have seen Intellij Idea update window with the notion: Plugin incompatible with new build found: Lombok Plugin …

intellij-idea lombok intellij-lombok-plugin
How to use lombok plugin in Android Studio?

I installed lombok from 'Preferences -> Plugin', but it's not working when I am trying to generate Getter & …

android-studio lombok
What are the risks with Project Lombok?

I'm coming up with performance goals for the new year, and I thought I'd be fun to put a goal …

java jakarta-ee boilerplate lombok
Kotlin doesn't see Java Lombok accessors?

Using Kotlin 1.0.0 release (compiling in IntelliJ 15). println(myPojoInstance.foo) When it tries to compile code (in IntelliJ or Gradle) that …

kotlin lombok println