由于使用Lambok注释的类,Maven构建失败

时间:2019-03-19 10:04:35

标签: java eclipse maven

我的项目是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-commonlambok注释用于吸气剂和吸气剂。这是example-common

的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>

    <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中,我可以在大纲窗口中看到它们。 outline window showing generated methods

如果我删除了@Data并手动编写了getters / setter方法,则构建成功。

我已经完成了lambok-xxx.jar的所有配置(lambok),这就是为什么它在IDE中没有给出编译错误,它仅在BUILD失败的原因。

我在POM上做错什么了吗?

PS:我正在使用Eclipse STS版本:3.9.6.RELEASE

4 个答案:

答案 0 :(得分:0)

enter image description here 选择“第三个选项”,如果不起作用,请尝试以下链接

answer somehow related to your issue click on the link

答案 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>。删除它可以解决问题。