myeclipse导入lombok后为什么会显示警告,使用IDEA需要安装插件,myeclipse也是要安装什么或者要修改什么配置吗?
PHPz2017-04-18 10:01:04
Yes, myeclise also needs to install plug-ins. Execute java -jar lombok.jar to pop up the graphical interface. Select the directory of myeclipse and the installation will be successful.
The official website of lombok has an installation tutorial
ringa_lee2017-04-18 10:01:04
Visit https://projectlombok.org/dow... and download lombok.jar;
Copy lombok.jar to the Eclipse/MyEclipse installation directory;
Add at the end of the eclipse.ini/myeclipse.ini configuration file in the Eclipse/MyEclipse installation directory:
-Xbootclasspath/a:lombok.jar
-javaagent:lombok.jar
Restart Eclipse/MyEclipse.