Lombok插件与IJ IDE集成在一起,我在该服务中看不到任何编译错误,但是在启动spring boot应用程序时 错误:java:找不到符号。 (用于setter方法)。
我们需要在IDE中进行其他设置才能使其理解和识别方法吗?
答案 0 :(得分:0)
在pom文件中添加以下缺少的插件部分可解决此问题。
<build>
<plugins>
<plugin>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.20</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>