I am facing an issue where Lombok annotations such as @Getter, @Setter, etc., are not being processed correctly in my project using Spring Boot 3.4.1. I have added the necessary Lombok dependencies and configured the maven-compiler-plugin for annotation processing, but IntelliJ IDEA doesn't seem to recognize the Lombok annotations or generate the corresponding getter and setter methods.
Even it is giving suggestions also while writing the code but gives error (cannot find symbol) after Running the code.
Comment From: sumitverma77
Fixed: 1. Moved to Spring Boot stable version 3.2.3. 2. Removed the version tag from the Lombok dependency in pom.xml. 3. Invalidated IntelliJ IDEA cache by selecting all available options.