I have followed the tutorial here http://projectlombok.org/
but after adding import and @Data nothing happens.
Does it work on eclipse helios ?
|
I have followed the tutorial here http://projectlombok.org/ but after adding import and Does it work on eclipse helios ? |
||||
|
|
|
Did you add
to your eclipse.ini? Because if you have (and if you have added the lombok.jar to the libraries used by your project), it works just fine with Eclipse Helios:
Ian Tegebo mentions in the comments that:
|
|||||||||||||
|
|
You not only have to add lombok.jar to the libraries, but also install it by either double-clicking the lombok jar, or from the command line run Afterwards, you can check if the installer has correctly modified your eclipse.ini:
If your Eclipse was already running, you have to Exit Eclipse and start it again. (File/Restart is not enough) If you are starting Eclipse using a shortcut, make sure that either there are no command line arguments filled in, or manually add Recent editions of Lombok also add a line to the About Eclipse screen. If Lombok is active you can find a line like 'Lombok v0.11.6 "Dashing Kakapo" is installed. http://projectlombok.org/' just above the line of buttons. |
||||
|
|
I can only make this work if I start the eclipse.exe directly in the eclipse installation folder. If I use a command file setting some initial JAVA_HOME and maven parameters before running the eclipse.exe it does not work and I get compiler errors on the exact same projects |
|||
|
|
|
Remenber run |
||||
|
|
|
I ran into this problem due to the missing: -vmargs -javaagent:lombok.jar -Xbootclasspath/a:lombok.jar as well. What is not explicitly said neither here nor in the Lombok popup message, and was not obvious to me as someone who never before had to fiddle with the eclipse.ini, is that you are NOT supposed to add that line, but instead add the last two parts of that line after the first part, which is already in the eclipse.ini file. To better illustrate, the end of the file should look something like this (bold is what matters for Lombok, the rest might be different for you): -vm |
|||
|
|
|
This sometimes does not work if Eclipse is on one of those strange default windows paths (e.g. In that case, do as above, then move the lombok jar to a cleaner path without spaces and braces (e.g. |
||||
|
|