how to configure lombok in eclipse luna

后端 未结 13 935
没有蜡笔的小新
没有蜡笔的小新 2020-11-30 09:45

I configure lombok in eclipse Luna with Maven. Annotation is added properly, but no getter and setter are generated.

eclipse.ini

`-vm E:\\Program Fil         


        
13条回答
  •  星月不相逢
    2020-11-30 10:16

    While installing lombok in ubuntu machine with java -jar lombok.jar you may find following error:

    java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper

    You can overcome this by simply doing following steps:

    Step 1: This can be done by editing the accessibility.properties file of JDK:

    sudo gedit /etc/java-8-openjdk/accessibility.properties
    

    Step 2: Comment (#) the following line:

    assistive_technologies=org.GNOME.Accessibility.AtkWrapper
    

提交回复
热议问题