【问题标题】:MapStruct is not generating implementation classesMapStruct 没有生成实现类
【发布时间】:2019-01-31 17:04:29
【问题描述】:

我将 Mapstruct 和 Lombok 与 maven 和 IDEA 一起使用,它拒绝生成映射器实现。配置:

<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.5.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
        <java.version>11</java.version>
        <org.mapstruct.version>1.3.0.Beta2</org.mapstruct.version>
        <lombok.version>1.18.2</lombok.version>
    </properties>

    <dependencies>
        <!-- spring deps -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        ...

        <!-- lombok dep -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>${lombok.version}</version>
        </dependency>

        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct</artifactId>
            <version>${org.mapstruct.version}</version>
        </dependency>

    </dependencies>

    <build>
        <finalName>${project.artifactId}</finalName>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>add-source</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>${project.build.directory}/generated-sources/java/</source>
                                <source>${project.build.directory}/generated-sources/annotations/</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <release>11</release>
                    <annotationProcessorPaths>
                        <path>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                            <version>${lombok.version}</version>
                        </path>
                        <path>
                            <groupId>org.mapstruct</groupId>
                            <artifactId>mapstruct-processor</artifactId>
                            <version>${org.mapstruct.version}</version>
                        </path>
                    </annotationProcessorPaths>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>3.0.2</version>
                <configuration>
                    <archive>
                        <manifestEntries>
                            <Implementation-Version>${project.version}</Implementation-Version>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>

   ...
</project>

Mapstruct 和 Lombok 都注册为带有想法的注释处理器:

当我尝试使用 IDEA 构建或尝试 maven clean install 时,不会生成实现文件。

我尝试将 Java 从 11 更改为 8,但仍然无法正常工作。 /target/generated-sources/annotations 只是空的。其他具有相同配置的项目运行良好。

【问题讨论】:

  • 只使用 maven 运行它是否有效?您使用的是哪个版本的 IntelliJ?
  • 会不会是build-helper-maven-plugin与生成资源冲突?你能评论一下,看看会发生什么?

标签: java spring-boot mapstruct


【解决方案1】:

如果你使用kotlin,你需要使用kapt而不是annotationProcessor

Gradle 示例:

plugins {
  kotlin("kapt") version "1.4.32"
}
...
dependencies {
  ...
  implementation("org.mapstruct:mapstruct:1.4.2.Final")
  kapt("org.mapstruct:mapstruct-processor:1.4.2.Final")
}

之后执行gradle build会生成实现

【讨论】:

    【解决方案2】:

    添加 mapstruct-processor 依赖项为我解决了这个问题。

    【讨论】:

      【解决方案3】:

      问题是我的映射器缺少注释@Mapper

      【讨论】:

        【解决方案4】:

        如果你使用 Kotlin 和 maven,你可以添加这些依赖:

            <dependency>
                <groupId>org.mapstruct</groupId>
                <artifactId>mapstruct</artifactId>
                <version>1.4.2.Final</version>
            </dependency>
        
            <dependency>
                <groupId>org.mapstruct</groupId>
                <artifactId>mapstruct-processor</artifactId>
                <version>1.4.2.Final</version>
            </dependency>
        

        并将 kapt 执行添加到 kotlin-maven-plugin 中,如下所示:

           <plugin>
                        <groupId>org.jetbrains.kotlin</groupId>
                        <artifactId>kotlin-maven-plugin</artifactId>
                        <version>1.5.0</version>
                        <executions>
                            <execution>
                                <id>kapt</id>
                                <goals>
                                    <goal>kapt</goal>
                                </goals>
                                <configuration>
                                    <sourceDirs>
                                        <sourceDir>src/main/kotlin</sourceDir>
                                        <sourceDir>src/main/java</sourceDir>
                                    </sourceDirs>
                                    <annotationProcessorPaths>
                                        <!-- Specify your annotation processors here. -->
                                        <annotationProcessorPath>
                                            <groupId>com.google.dagger</groupId>
                                            <artifactId>dagger-compiler</artifactId>
                                            <version>2.9</version>
                                        </annotationProcessorPath>
                                    </annotationProcessorPaths>
                                </configuration>
                            </execution>
                            <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>
                        </executions>
                    </plugin>
        

        【讨论】:

          【解决方案5】:

          我遇到过这个问题。在我的情况下得到这个错误:

          Java:由于错误元素存在问题,没有为 Mapper 创建实现

          应用程序运行时。

          我曾经使用 Spring Boot 版本 2.4.3,当我将版本降低到 2.2.6.RELEASE 时它开始工作

          【讨论】:

            【解决方案6】:

            对我来说,问题是:

            <useIncrementalCompilation>false</useIncrementalCompilation>
            

            注释掉之后,一切正常!

            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>${jdk.target.version}</source>
                    <target>${jdk.target.version}</target>
                    <!--<useIncrementalCompilation>false</useIncrementalCompilation>-->
                    <annotationProcessorPaths>
                        <path>
                            <groupId>org.mapstruct</groupId>
                            <artifactId>mapstruct-processor</artifactId>
                            <version>${org.mapstruct.version}</version>
                        </path>
                    </annotationProcessorPaths>
                </configuration>
            </plugin>
            

            【讨论】:

            • Mattia,这看起来不像 OP 问题的答案。如您所见,useIncrementalCompilation 未被使用。
            • 你是对的!我只是想分享我的解决方案,以防有人遇到和我一样的问题。我认为它可能对某些人有用。
            猜你喜欢
            • 1970-01-01
            • 1970-01-01
            • 2016-07-14
            • 2019-12-03
            • 2021-12-21
            • 2018-12-05
            • 1970-01-01
            • 2021-04-15
            • 2018-12-04
            相关资源
            最近更新 更多