Saka7/spring-boot-angular4-boilerplate

IDE showing errors on non existent getters/setters methods

ameagol opened this issue · 5 comments

Saka7 commented

Which IDE do you use? For IntelliJ there is a lombok plugin.

Hi Saka, Eclipse IDE

after create the methods, the errors gone, I have to test now

@ameagol you shouldn't have to write the methods since lombok will do that for you when the project is compiled. This project has lombok in its dependencies (see https://github.com/Saka7/spring-boot-angular4-boilerplate/blob/master/backend/build.gradle). What you should do is to add a plugin for your IDE which recognizes and processes the lombok annotations. In StackOveflow you can check some posts might be useful to you: https://stackoverflow.com/questions/22310414/how-to-configure-lombok-in-eclipse-luna and https://stackoverflow.com/questions/3418865/cannot-make-project-lombok-work-on-eclipse-helios/3425327#3425327

Thank you, @lealceldeiro that was a quite dummy issue, forgetting to create the get/setters. Just wasn't sure how lombok should proceed!