Why IntelliJ needs Lombok plugin?

狂风中的少年 提交于 2019-12-19 09:09:22

问题


As far as I understand, Lombok uses Java's Annotation Processors to generate additional methods.

With Maven 3.5 it works perfectly without adding any additional configuration, just add dependecy to Lombok and put some annotations like @Getter, @Setter.

However, if I open this project in IntelliJ IDEA 2018.2, all usages of generated getters/setters are highlighted as errors. I have Annotation Processing turned on, I tried to built project in IntelliJ or build in Maven and then use in IntelliJ, but it still requires Lombok Plugin to avoid false errors.

Is it some kind of bug? Error in workflow? Or maybe Lombok is using not only Annotation Processors, but some other stuff I didn't know and that's why IntelliJ + javac cannot figure out how to deal with it? It would be strange as javac itself compiles those files without errors

I know there are many questions "I have errors while using Lombok" and answers like "use the plugin". I'm not asking if I should use plugin, but why I should use it, why IntelliJ cannot handle it without plugin while javac does


回答1:


IntelliJ's code analysis engine does not use javac or run annotation processors. Instead, IntelliJ uses its own Java parser and reference resolution logic, and builds its own code model. The Lombok plugin extends the code model to provide information about declarations generated by the Lombok annotation processor.




回答2:


It's because IDEA syntax highlighter uses internal Java parser. If IDEA used just javac, then it wouldn't be able to highlight syntax errors as you type. It also gives much better hints about wrong code, so each Java construct, feature or annotation must be implemented by JetBrains team or there's plugin for it like in this case.

Annotation processing option is just for building project which is done via javac, but it's not for syntax highlighting.




回答3:


Ale IDEs use lombok plugin be it intelij-idea or eclipse. javac works fine with it - but remember that it works when for example you build you project with mvn clean package. Then when you have your IDE - it works differntly - the code is not processed like in build task.

The plugin make it know to IDE what is this annotation and what code it generates underhood without need of javac.



来源:https://stackoverflow.com/questions/52093073/why-intellij-needs-lombok-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!