我的项目是Spring-boot 2.1.1.RELEASE
应用程序。
这是一个多模块的Maven项目。这是父POM文件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>example-parent</name>
<description>example.com parent module</description>
<groupId>com.example</groupId>
<artifactId>example-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>example-common</module>
<module>example-persistence</module>
<module>example-rest</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<java-version>1.8</java-version>
</properties>
</project>
example-common
将lambok
注释用于吸气剂和吸气剂。这是example-common
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.example</groupId>
<artifactId>example-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>example-common</artifactId>
<name>example-common</name>
<description>module contains commons utils for all other modules</description>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- other dependencies -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
<compilerArgument>-proc:none</compilerArgument>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
可以看到,我正在使用<annotationProcessorPaths>
。
@Data
public class CaptchaConfigs {
private String site;
private String secret;
}
@Data
注释在maven build
过程中未生成getter / setter,因此出现错误
cannot find symbol [ERROR] symbol: method getSite()
cannot find symbol [ERROR] symbol: method getSecret()
getter / setter存在于IDE中,我可以在大纲窗口中看到它们。
如果我删除了@Data
并手动编写了getters / setter方法,则构建成功。
我已经完成了lambok-xxx.jar
的所有配置(lambok
),这就是为什么它在IDE中没有给出编译错误,它仅在BUILD失败的原因。
我在POM上做错什么了吗?
PS:我正在使用Eclipse STS版本:3.9.6.RELEASE
答案 0 :(得分:0)
答案 1 :(得分:0)
请将maven-compiler-plugin
版本定义为3.5。使用maven编译器3.5.x annotationProcessorPaths
,可以正常工作。
尝试将以下内容添加到您的Maven编译器插件中。
<version>3.5.1</version>
答案 2 :(得分:0)
我在同一Spring Boot Lombok
上使用2.1.1.RELEASE
。我认为问题出在您的Maven插件上。下面是我的依赖项和插件,效果很好。
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
答案 3 :(得分:0)
这是我的配置,符合我的预期。从这里得到答案。
Maven compiler not adding getters/setters(generated using Lombok) to the build jar file
实际上是引起问题的<compilerArgument>-proc:none</compilerArgument>
。删除它可以解决问题。