我已经安装了intellij idea的插件(lombok-plugin-0.8.6-13)。
将lombok.jar添加到类路径中
我可以在结构窗口中找到getter和setter。Intellij没有显示错误。
设置- Lombok插件-验证的Intellij配置为Lombok,它显示“配置Intellij似乎是ok”。
看起来一切都很好。但是当我编译一个测试时,错误来了:找不到方法getXXX和setXXX。
我用IntelliJ打开了.class文件,发现没有setXXX和getXXX方法。
有人能告诉我为什么吗?
插件:lombok-plugin-0.8.6-13
lombok.jar: 1.14.0
理念:Linux 13.0.2
jdk: 1.7.0_21
如果你在Mac上使用Intellij,这个设置终于对我有用了。
软件安装:Intellij
进入首选项,搜索插件。
在插件搜索框中输入“Lombok”。Lombok是一个非捆绑的插件,所以一开始不会显示。
点击“浏览”以搜索非捆绑的插件
应该会显示“Lombok Plugin”。选择它。
点击绿色的“安装”按钮。
点击“重启Intellij IDEA”按钮。
设置:
Enable Annotation processor
Go to Preferences -> Build, Execution,Deployment -->Preferences -> Compiler -> Annotation Processors
File -> Other Settings -> Default Settings -> Compiler -> Annotation Processors
Check if Lombok plugin is enabled
IntelliJ IDEA-> Preferences -> Other Settings -> Lombok plugin -> Enable Lombok
Add Lombok jar in Global Libraries and project dependencies.
File --> Project Structure --> Global libraries (Add lombok.jar)
File --> Project Structure --> Project Settings --> Modules --> Dependencies Tab = check lombok
Restart Intellij