Lombok not working with Intellij

跟風遠走 提交于 2019-12-10 17:12:59

问题


I am not able to use any of the lombok annotations in Intellij, it works fine in Eclipse.

So far, I have done the following things:

  • Added lombok dependency in eclipse
  • Installed the lombok plugin
  • Enabled annotation processing

However, I cannot use any of the lombok annotations, eg: using @Builder gives error because import lombok.Builder does not exists.

I am using IDEA 2018.2.1 CE

Any ideas, what am I doing wrong?

MVN dependency:

Can see the dependency resolved:

Can see the lombok plugin:

Annotation processing enabled:

EDIT:

Following code gives an error, basically i cannot use import lombok because somehow I lombok is not available:

import lombok.Builder //Error, Cannot resolve Builder

@Builder //Gives error, cannot resolve symbol Builder
public class Employee{
    private int id;
    private String name;
}

回答1:


From your images, it seems like you have submodule temp, it can be the problem
The pom.xml is for project buildertest, not temp

If you want to have submodule, you should also set it as Maven project and have another pom.xml



来源:https://stackoverflow.com/questions/51790536/lombok-not-working-with-intellij

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