我在 kotlin-maven-plugin 中使用 hibernate-jpamodelgen 作为静态 jpa 生成器。但是它找不到原始类。
cannot find symbol [ERROR] symbol: class Type
经过检查,我发现在那种情况下,在 generate-source/kapt.xml 中生成了实体。在 kaptStubs 目录中生成的所有其他类。没有 kapt 它工作正常。
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>kapt</id>
<goals>
<goal>kapt</goal>
</goals>
<configuration>
<sourceDirs>
<sourceDir>src/main/kotlin</sourceDir>
</sourceDirs>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>5.3.2.Final</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</execution>
输出选项不起作用。如何将输出目录更改为一致性?
谢谢你,伊琳娜