执行Spring Boot项目时报错:Lombok requires enabled annotation processing

在使用 Lombok 时,你需要启用注解处理器(annotation processing)。下面是一些步骤来启用注解处理器:

  1. 确保已在项目中添加了 Lombok 的依赖。可以在项目的构建配置文件(如 Maven 的 pom.xml 或 Gradle 的 build.gradle)中添加以下依赖项:

    org.projectlombok
    lombok
    1.18.22
    provided

  1. 在 IntelliJ IDEA 中打开项目设置(File -> Settings)。
  2. 在设置窗口中,找到 “Build, Execution, Deployment” -> “Compiler” -> “Annotation Processors”。
  3. 确保已选中 “Enable annotation processing” 复选框。
  4. 点击 “Apply” 或 “OK” 按钮保存设置。如图所示:
    执行Spring Boot项目时报错:Lombok requires enabled annotation processing_第1张图片
  5. 之后,就不会再弹出提示框了。

你可能感兴趣的:(idea,Spring,Boot,spring,boot,idea)