Skip to content

Annotation errors in Eclipse

Adrian Wilke edited this page Jun 25, 2020 · 2 revisions

Annotation errors in Eclipse

Your IDE may show errors which state, that some methods do not exist. This may related to Annotations.

  • org.dice_research.opal.webservice.model.entity.dto.DataSetDTO
    uses the lombok.Data annotation
  • org.dice_research.opal.webservice.model.entity.dto.SearchDTO
    additionally uses the com.fasterxml.jackson.annotation.JsonFormat annotation

Eclipse solution: Install Lombok

To resolve those errors, download Lombok: https://projectlombok.org/download.
Execute the file via java -jar lombok.jar and select you Eclipse directory.
The lombok installer copies the jar file to the eclipse directory and edits eclipse.ini.
Restart Eclipse.
Click on Help -> About Eclipse IDE. The text field should contain a text like Lombok is installed.
A screenshot is available here: https://projectlombok.org/setup/eclipse
Finally you may have to clean your project (Project -> Clean / Run as -> Maven clean).

IntelliJ IDEA: Install Lombok IntelliJ plugin

Described here: https://projectlombok.org/setup/intellij

Additional resources that may help