问题
I just tried to send a Maven-based project to another computer and HORROR, red markers everywhere!!
However, mvn clean install is building just fine.
Quickly, I noticed that Lombok is not generating getters and setters for my classes, although the @Getter and @Setter are being correctly recognised by Eclipse.
Both computers use the same Maven version (3.0.4) but different JDKs (1.6_23 and 1.6_33). They both use Eclipse Indigo 32 bit. Do you have an idea about how to solve the problem?
回答1:
When starting with a fresh eclipse installation you, in fact, need to "install" Lombok before being able to use it.
- Go where you Lombok jar is (e.g. (e.g. you can find in
~/.m2/repository/org/projectlombok/lombok/1.16.10/lombok-1.16.10.jar), run it (Example:java -jar lombok-1.16.10.jar). A window should appear, browse to youreclipse.exelocation. - Click on install.
- Launch Eclipse, update project configuration on all projects and voila.
回答2:
If you use STS. You must have Lombok installed in your Eclipse by running lombok-xyz.jar
Please Try the Following the Steps:
- Include pom in Maven .
- Exit/Shutdown STS
- Find lombok Jar in ~/.m2/repository/org/projectlombok/lombok/version.x
From Command Prompt/Shell
java -jar lombok-1.x.y.jarStart STS
Thats all.
EDIT: I did this and was still showing errors, as mentioned in the comments. So I updated the project: right-click on project -> Maven -> Update Project and the errors disappeared.
回答3:
Note that if you're using IntelliJ, you'll want to install the Lombok plugin (available from IDE settings) and also enable annotation processing.
回答4:
If you use eclipse. You must have lombok installed in your Eclipse by running lombok-xyz.jar (e.g. you can find in ~/.m2/repository/org/projectlombok/lombok/1.12.6/lombok-1.12.6.jar).
As the window of installation opened, you must choose the location of your Eclipse. And let it install lombok inside. You must restart your Eclipse afterwards.
回答5:
These are command line instructions where the above Graphical version is not available or you can not open the Lombok jar file by double clicks, like in Ubuntu.
At the time of writing using Lombok is not straightforward as just adding a dependency in your POM xml file and adding the annotation. These are the next steps:
1) Locate where your Lombok jar file is downloaded by maven; Usually it is in .m2 folder inside your home directory. Then execute the following command.
java -jar lombok-1.16.18.jar install <path of where your IDE is installed>
example usage:
java -jar lombok-x.xx.xx.jar install ~/Downloads/spring-tool-suite-3.9.1.RELEASE-e4.7.1a-linux-gtk-x86_64/sts-bundle/sts-3.9.1.RELEASE/
the above command basically makes a configuration update in your IDE .ini or configuration file something like below:
-javaagent:/home/neshant/Downloads/spring-tool-suite-3.9.1.RELEASE-e4.7.1a-linux-gtk-x86_64/sts-bundle/sts-3.9.1.RELEASE/lombok.jar
this ensures that the @Data or @Getter or @Setter annotations are understood by the IDE. It is weird that it had to be so complex.
回答6:
When using lombok on a fresh installation of Eclipse or STS, you have to:
Install the lombok jar which you can get at https://projectlombok.org/download. Run the jar (as Administrator if using windows) and specify the path to your Eclipse/STS installation.
Restart your IDE (Eclipse or STS)
Give some time for eclipse to generate the class files for lombok (Might take a up to 4 mins in some cases)
回答7:
I am using Red hat Jboss developer studio. I solved this issue by:
The project has
lombokdependency. First look into your.m2repository and find thelombokjarDouble click on the jar, you will see installer there specify the path for IDE like
C:\Users\xxx\devstudio\studio\devstudio.exeRestart the IDE and update the maven project the error will go
回答8:
For Sprint STS - Place the lombok.jar file in the eclipse/sts exe folder and add the following entry to the STS.ini.
-javaagent:lombok.jar
回答9:
1) Run the command java -jar lombok-1.16.10.jar. This needs to be run from the directory of your lombok.jar file.
2) Add the location manually by selecting the eclipse.ini file(Installed eclipse directory). Through “Specify location”
Note : Don't add the eclipse.exe because it will make the eclipse editor corrupt.
How to add the eclipse.ini file
回答10:
I also encountered this issue, for my case, it's because I upgrade my IntelliJ IDEA without upgrading the Lombok plugin. So they are incompatible.
回答11:
For Spring ToolSuite 4 on Mac, they renamed the ini to SpringToolSuite4.ini.
You can either rename or copy it to STS.ini to be recognized by lombok. Then copy it back to the original name to be read by the IDE. (Haven't tried if symbolic links work though.)
回答12:
Download Lombok Jar, let’s maven do the download on our behalf :
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>
Now... mvn clean install command on the newly created project to get this jar downloaded in local repository. Goto the jar location, execute the command prompt, run the command : java -jar lombok-1.16.18.jar
click on the “Specify Location” button and locate the eclipse.exe path LIKE :
finally install this by clicking the “Install/Update”
回答13:
Download Lombok Jar File https://projectlombok.org/downloads/lombok.jar
Add maven dependency:
` <dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency> `
Start Lombok Installation java -jar lombok-1.16.18.jar
find complet exemple in this link https://howtodoinjava.com/automation/lombok-eclipse-installation-examples/
回答14:
Remove @Getter from private static field.
https://github.com/rzwitserloot/lombok/issues/1493
回答15:
If you are using maven , Go to maven dependencies in your project structure then run lombok jar as java project it will install it then exit and start eclipse
来源:https://stackoverflow.com/questions/11803948/lombok-is-not-generating-getter-and-setter