1

I am trying to use @ConfigurationProperties with lombok @Getter and @Setter.

If I manually define the getters and setters everything works fine. If I remove the actual getters and setters and add @Getter and @Setter spring cannot find any of the getters and setters.

Any ideas what I might be missing?

Roland Weisleder
  • 9,668
  • 7
  • 37
  • 59
Brian
  • 556
  • 6
  • 26
  • After doing a little more research, I think I need to install the lombok jar in eclipse/STS. Thoughts? https://projectlombok.org/setup/eclipse – Brian Sep 11 '19 at 18:05
  • I'd say follow the website, and if it still doesn't work, raise an issue on their GitHub. – Frontear Sep 11 '19 at 19:56

1 Answers1

2

I was able to resolve this issue by following the instructions at: https://projectlombok.org/setup/eclipse

Brian
  • 556
  • 6
  • 26