Lombok added but getters and setters not recognized in Intellij IDEA

JavaIntellij IdeaLombok

Java Problem Overview


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?

Java Solutions


Solution 1 - Java

You need to install the Lombok plugin for IDEA. Open the Settings panel (Ctrl + Alt + S). Search for "Plugins", then search for "Lombok" in the plugins. Find the plugin and install it. Finally, restart your IDEA. Then everything will be OK!

Solution 2 - Java

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.

Solution 3 - Java

It is a combination of

  • Ticking the "Enable annotation processing" checkbox in Settings->Compiler->Annotation Processors.

and

  • Install the plugin of Lombok for idea and restart for change to take effect.

Solution 4 - Java

If you are on Mac, make sure you enable annotation processing (tick the checkbox) at these 2 places.

> 1.) Intellij IDEA -> Preferences -> Compiler -> Annotation Processors > > 2.) File -> Other Settings -> Default Settings -> Compiler -> Annotation Processors

And then

> 3.) Intellij IDEA -> Preferences -> Plugins ->Browse Repositories-> Search for "Lombok"-> install plugin -> Apply and restart IDEA > > 4.) And then probably restart Intellij IDEA.

This is my IntelliJ IDEA and Mac Version - IntelliJ IDEA 2017.1.5 Build #IU-171.4694.70 --- Mac OS X 10.12

Solution 5 - Java

I had both the Lombok plugin installed and Annotation Processing enabled within IntelliJ and my syntax highlighting still wasn't working properly. This could have been due to the 2017 to 2018 IDEA upgrade. I was getting warnings "access exceeds rights" on private fields within classes I had used @Getter and @Setter on.

I had to uninstall the Lombok plugin, restart IntelliJ, then reinstall the plugin, and restart IntelliJ once more.

Everything is working good now.

Solution 6 - Java

It's possible that you already have the Lombok plugin, and still the generated methods are not recognised by Android Studio. In such case the plugin might be out of date, so the solution is to simply update it.

Preferences -> Plugins -> Lombok Plugin -> Update Plugin

Solution 7 - Java

  1. Go to File > Settings > Plugins. 2. Click on Browse repositories...
    1. Search for Lombok Plugin.
    2. Click on Install plugin.
    3. Restart Android Studio.

Solution 8 - Java

Complete steps to fix or configure lombok.

1. Add dependency

> > org.projectlombok > lombok > 1.18.8 > provided >

2. Install the plugin of Lombok for ide. File > Settings > Plugins > Search (lombok) > install

3.Ticking the "Enable annotation processing" checkbox using below steps:- Settings->Compiler->Annotation Processors

4.Restart for change to take effect.

Solution 9 - Java

i had this issue, just make sure

  1. Lombok plugin is added.
  2. Annotation processor is ticked.
  3. In your build.gradle/ pom.xml, you have set lombok to be the annotation processor.

Eg. for gradle->

> annotationProcessor 'org.projectlombok:lombok:1.18.12'

Solution 10 - Java

Goto Setting->Plugin->Search for "Lombok Plugin" -> It will show results. Install Lombok Plugin from the list and Restart Intellij

Solution 11 - Java

Go to settings->Plugins->Browse repositories and search for Lombok it will display the Lombok plugin also you will see the install option on the right side panel. Please install it. Then restart your intelliJ IDE. This has solved my issue.

Solution 12 - Java

In IDEA 2019.3.3 community on mac ( catalina)

IntelliJ IDEA => preferences


Build,Execution,Deployment=>Compiler=>Annotation Processors:

Check Enable annotation Processing

Solution 13 - Java

In my case,

  1. Lombok plugin was installed ✅
  2. Annotation processor was checked ✅

but still I was getting the error as lombok is incompatible and getter and setters was not recognized. with further checking I found that recently my intelliJ version got upgraded and the old Lombok plugin is not compatible.

Go to Preference -> Plugins -> Search lombok and update

OR

Go to Preference -> Plugins -> Search lombok-> Uninstall restart IDE and install again from MarketPlace

enter image description here

Solution 14 - Java

I fixed it by following steps:

  1. Installed previous version of Idea(12.16) and start it(idea 13 was launched)
  2. then i switch on window with idea 13 (it proposed to reread some config files. I agreed and restart my IDE). And then everithing became ok with tha latest version of IDEA

Solution 15 - Java

In my case it was migrating from idea 2017 to 2018 and Lombok plugin was already there. All I did is added "Enable annotation processing options" entering preferences and check the box

Solution 16 - Java

Actually the lombok is working (if you run the project even with the IDE red alerts, you will see the project will run without error), but the IDE is not recognizing all the resources generated by the lombok annotations. So you have to install the lombok plugin, that's all!

Solution 17 - Java

In MacBook press command+, and then go to plug-in and search for Lombok and then install it.

It will work without restarting IntelliJ IDEA IDE if doesn't work then please try with restart.

Many thanks

Solution 18 - Java

Two ways:

  1. Check EnableAnnotationProcessing under setting=>compiler
  2. install lombok from plugins and restart IDE

Solution 19 - Java

In Linux,

If you're using gradle to add your Lombok dependency in IntelliJ, you might still face the issue even after following the two steps that others suggesting like,

  1. Enabling the Enable annotation processing, in File-> Settings-> Build, Execution, Deployment-> Compiler(Expand)-> Annotation processors.
  2. Installing or Enabling(If already installed) Lombok in File-> Settings-> Plugins.

Along with this also add the following dependency in your build.gradle script under the dependency along with Lombok dependency.

dependency{
    annotationProcessor 'org.projectlombok:lombok:1.18.20'
}

Change the dependency version since this is the latest version as I'm posting this.

Solution 20 - Java

I'm using IntelliJ with Spring boot 2.5.9. Here are the following things I did:

  1. Added the Lombok Plugin
  2. Enabled annotation processing
  3. Add lombok dependency and annotationProcessor tag in build.gradle file or maven file. (It worked for me after this step)

Here is my build.gradle file:

plugins {
	id 'org.springframework.boot' version '2.5.9'
	id 'io.spring.dependency-management' version '1.0.11.RELEASE'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

configurations {
	compileOnly {
		extendsFrom annotationProcessor
	}
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter'
	compileOnly 'org.projectlombok:lombok'
	annotationProcessor 'org.projectlombok:lombok'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

tasks.named('test') {
	useJUnitPlatform()
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDon QuixoteView Question on Stackoverflow
Solution 1 - JavaX.ChenView Answer on Stackoverflow
Solution 2 - JavaDon QuixoteView Answer on Stackoverflow
Solution 3 - JavaBlawlessView Answer on Stackoverflow
Solution 4 - Javaso-random-dudeView Answer on Stackoverflow
Solution 5 - JavaJason SlobotskiView Answer on Stackoverflow
Solution 6 - JavaSergei EmelianovView Answer on Stackoverflow
Solution 7 - JavaJatin GeraView Answer on Stackoverflow
Solution 8 - JavaNeeraj GahlawatView Answer on Stackoverflow
Solution 9 - JavaManzilView Answer on Stackoverflow
Solution 10 - JavarahulnikhareView Answer on Stackoverflow
Solution 11 - JavagreenhornView Answer on Stackoverflow
Solution 12 - JavaApp WorkView Answer on Stackoverflow
Solution 13 - JavaError HunterView Answer on Stackoverflow
Solution 14 - Javauser2883070View Answer on Stackoverflow
Solution 15 - JavagreencrestView Answer on Stackoverflow
Solution 16 - Javafelipes10View Answer on Stackoverflow
Solution 17 - JavasaurabhshcsView Answer on Stackoverflow
Solution 18 - JavaGvSharmaView Answer on Stackoverflow
Solution 19 - Javavenkat starkView Answer on Stackoverflow
Solution 20 - Javauser3608314View Answer on Stackoverflow