IntelliJ IDEA autocompletion not recognizing Lombok annotations with Spring Boot 2.5.0
I'm integrating two systems and Does anyone know how to This might be a silly question, but I'm working on a Spring Boot application using IntelliJ IDEA 2021.2.3 and I've added Lombok for simplifying my code, but I'm working with an scenario where IntelliJ doesn't seem to recognize the Lombok annotations (like @Getter, @Setter, etc.) for autocompletion and generates warnings about missing getters and setters. I've made sure that the Lombok plugin is installed and enabled in IntelliJ, and I've also added the Lombok dependency in my `pom.xml` as follows: ```xml <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.20</version> <scope>provided</scope> </dependency> ``` Additionally, I have the annotation processing enabled in my project settings, but the code still doesn't compile correctly. The behavior messages I'm getting in the IDE state: "want to resolve method 'getFieldName()'" despite having the `@Getter` annotation on my field. I also tried invalidating caches and restarting IntelliJ, but that didn't help. I've looked into the IntelliJ IDEA settings to see if thereβs something I might be missing, but want to find anything important. I would appreciate any guidance on how to resolve this scenario or any other configurations I should check to get Lombok working properly with my setup. I'm working on a API that needs to handle this. Am I missing something obvious? I'm working on a service that needs to handle this. Am I missing something obvious? I'm working on a mobile app that needs to handle this.