Процессор аннотаций Hibernate Metamodel не распознает Kotlin классов сущностей - PullRequest
1 голос
/ 04 марта 2020

У меня есть несколько классов сущностей в Java, а некоторые в Kotlin. Я просто добавил следующее в свой pom: xml:

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-jpamodelgen</artifactId>
        <version>${hibernate.version}</version>
    </dependency>

IntelliJ теперь показывает классы метамоделей для java сущностей, но не kotlin те. Поэтому я добавил kapt без эффекта:

<plugin>
    <groupId>org.jetbrains.kotlin</groupId>
    <artifactId>kotlin-maven-plugin</artifactId>
    <version>${kotlin.version}</version>
    <executions>
        <execution>
            <id>compile</id>
            <phase>compile</phase>
            <goals>
                <goal>compile</goal>
            </goals>
        </execution>
        <execution>
            <id>test-compile</id>
            <phase>test-compile</phase>
            <goals>
                <goal>test-compile</goal>
            </goals>
        </execution>
        <execution>
            <id>kapt</id>
            <goals>
                <goal>kapt</goal>
            </goals>
            <configuration>
                <sourceDirs>
                    <sourceDir>src/main/java</sourceDir>
                </sourceDirs>
                <annotationProcessorPaths>
                    <!-- Specify your annotation processors here. -->
                    <annotationProcessorPath>
                        <groupId>org.hibernate</groupId>
                        <artifactId>hibernate-jpamodelgen</artifactId>
                        <version>${hibernate.version}</version>
                    </annotationProcessorPath>
                </annotationProcessorPaths>
            </configuration>
        </execution>
    </executions>
    <configuration>
        <jvmTarget>11</jvmTarget>
        <args>
            <arg>-Xjvm-default=enable</arg>
            <!--<arg>-XXLanguage:+JvmStaticInInterface</arg>-->
        </args>
        <compilerPlugins>
            <plugin>jpa</plugin>
<!--                        <plugin>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</plugin>-->
        </compilerPlugins>
    </configuration>
    <dependencies>
        <dependency>
            <groupId>org.jetbrains.kotlin</groupId>
            <artifactId>kotlin-maven-noarg</artifactId>
            <version>${kotlin.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-jpamodelgen</artifactId>
            <version>${hibernate.version}</version>
        </dependency>
    </dependencies>
</plugin>

Я попытался добавить <plugin>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</plugin> без видимого эффекта. Я попытался включить обработку аннотаций в IntelliJ IDEA: IntelliJ Settings for Annotation Processing

Ох. Я вижу сгенерированные файлы для классов Kotlin в target/generated-sources/kapt/compile/ вместо target/generated-sources/annotations/. Это может быть так же просто, как установка соответствующего выходного каталога.

Теперь, когда я запускаю mvn clean compile, я получаю ошибки только для Java классов сущностей, говоря, что аннотации уже были выполнены (предположительно, kapt) и созданные классы:

[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ MyProject ---
[INFO] Deleting /myproject/target
[INFO] 
[INFO] --- kotlin-maven-plugin:1.3.70:kapt (kapt) @ MyProject ---
[WARNING] 'tools.jar' was not found, kapt may work unreliably
[INFO] Applied plugin: 'jpa'
[INFO] Note: Hibernate JPA 2 Static-Metamodel Generator 5.4.12.Final
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ MyProject ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 200 resources
[INFO] 
[INFO] --- kotlin-maven-plugin:1.3.70:compile (compile) @ MyProject ---
[INFO] Applied plugin: 'jpa'
[WARNING] Duplicate source root: /myproject/target/generated-sources/kapt/compile
[WARNING] Duplicate source root: /myproject/target/generated-sources/kaptKotlin/compile
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.0:compile (java-compile) @ MyProject ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 261 source files to /myproject/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] Problem with Filer: Attempt to recreate a file for type my.project.db.SomeJavaClass_
[ERROR] Problem with Filer: Attempt to recreate a file for type my.project.db.AnotherJavaClass_
...

1 Ответ

0 голосов
/ 04 марта 2020

Я удалил зависимость проекта от hibernate-jpamodelgen И зависимость плагина Kotlin от того же самого, оставив ее упомянутой только в annotationProcessorPath для kapt. Maven успешно завершен.

<!-- Java has a fit if Kapt processes this first,
     so just let Kapt do it and don't tell Java about it. -->
<!--        <dependency>-->
<!--            <groupId>org.hibernate</groupId>-->
<!--            <artifactId>hibernate-jpamodelgen</artifactId>-->
<!--            <version>${hibernate.version}</version>-->
<!--        </dependency>-->

Я также вернулся в окно настроек IntelliJ, удалил JPAMetaModelEntityProcessor и снял флажок «обработка аннотаций». Кажется, IntelliJ теперь тоже счастлив.

...