Skip to content
Advertisement

Lombok added but getters and setters not recognized in Intellij IDEA

I am using IntelliJ IDEA on ubuntu. I added lombok.jar into my project and installed the Lombok plugin for IDEA. I have access to the annotations but the getters and setters aren’t generated. I get the same errors I would get if I tried accessing a getter or setter method that doesn’t exist. What could I be missing?

Advertisement

Answer

I fixed it by ticking the “Enable annotation processing” checkbox in Settings->Compiler->Annotation Processors.

Along with this you might also need to install lombok plugin as mentioned in @X.Chen’s answer for new versions of IntelliJ Idea.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement