gothinkster / spring-boot-realworld-example-app

Example Spring codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld API spec.
MIT License
1.3k stars 677 forks source link

Error With Getter and setter #4

Closed thornsereyvong closed 6 years ago

aisensiy commented 6 years ago

I use Lombok which need support in IDE. Check https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000224490-IntelliJ-IDEA-Lombok-Not-Working for some help.

AbhishekAnand24 commented 4 years ago

I have also faced the same issue while using Lombok in eclipse.

And I am able to solve the issue by following the below steps.

1.Copy and paste the lombok jar into the eclipse installation folder. 2.Run the command "java -jar lombok-.jar". 3.A GUI opens. 4.Check the IDE listed in the installer. 5.This entry should be available in the eclipse.ini file "-javaagent:<>". 6.Restart Eclipse to find the changes which starts listing the associated getters, setters in your java file.

Hope this will help you.