如何与 maven 一起协调龙目岛和 JPAMetalModel 处理器

2022-09-03 03:52:56

当 JPAMetaModelEntityProcessor 注释处理器在 maven 构建中激活时,如何使用龙目岛

Maven config:

[...]
<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <compilerArguments>
                    <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
                </compilerArguments>
            </configuration>
        </plugin>
    </plugins>
</build>
<dependencies>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.hibernate.javax.persistence</groupId>
        <artifactId>hibernate-jpa-2.0-api</artifactId>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-jpamodelgen</artifactId>
        <scope>provided</scope>
    </dependency>
</dependencies>
[...]

在构建过程中(mvn全新安装),MetaModel对象被正确生成,但似乎龙目岛注释处理器不再添加到Javac编译中。所有@Getter,@Setter,...不起作用。


答案 1

在研究了龙目岛项目后,我找到了一个解决方案。

当将JPAMetaModelEntityProcessor指定为javac注释处理器时,龙目岛处理器似乎被删除了。

为了纠正这一点,我们可以简单地在maven-compiler-plugin中添加Lombok注释处理器:

[...]
<plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <compilerArguments>
            <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor,lombok.launch.AnnotationProcessorHider$AnnotationProcessor</processor>
        </compilerArguments>
    </configuration>
</plugin>
[...]

答案 2

@Pierrick的解决方案是正确的。但我可以提供这个解决方案。因为我们可以用这个添加许多处理器。

<plugin>
   <artifactId>maven-compiler-plugin</artifactId>
   <configuration>
      <annotationProcessorPaths>
         <path>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>${lombok.version}</version>
         </path>
         <path>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-jpamodelgen</artifactId>
             <version>5.4.1.Final</version>
         </path>
      </annotationProcessorPaths>
   </configuration>
</plugin>

推荐