繁体   English   中英

Maven-Pom中的Mapstruct和其他注释处理器

[英]Mapstruct together with other annotation-processors in maven-pom

http://maven.apache.org/xsd/maven-4.0.0.xsd“> 4.0.0

<artifactId>yyy-data</artifactId>
<name>VS yyy (data)</name>

<parent>
    <groupId>de.xxx</groupId>
    <artifactId>yyy-server</artifactId>
    <version>8.1.0-SNAPSHOT</version>
</parent>
<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <distribution.outputDirectory>${project.build.directory}/dist</distribution.outputDirectory>
</properties>

<dependencies>

    <dependency>
        <groupId>com.mysema.querydsl</groupId>
        <artifactId>querydsl-apt</artifactId>
    </dependency>
    <dependency>
        <groupId>com.mysema.querydsl</groupId>
        <artifactId>querydsl-jpa</artifactId>
    </dependency>

    <dependency>
        <groupId>javax.xml.bind</groupId>
        <artifactId>jaxb-api</artifactId>
        <version>2.2.8</version>
    </dependency>
    <dependency>
        <groupId>com.sun.xml.bind</groupId>
        <artifactId>jaxb-core</artifactId>
        <version>2.2.8-b01</version>
    </dependency>
    <dependency>
        <groupId>com.sun.xml.bind</groupId>
        <artifactId>jaxb-impl</artifactId>
        <version>2.2.8-b01</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.mapstruct</groupId>
        <artifactId>mapstruct</artifactId>
        <version>1.3.0.Final</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <annotationProcessorPaths>
                    <path>
                        <groupId>org.mapstruct</groupId>
                        <artifactId>mapstruct-processor</artifactId>
                        <version>1.3.0.Final</version>
                    </path>
                </annotationProcessorPaths>
                <annotationProcessors>
                    <annotationProcessor>de.zzz.annotation.processor.GenerateHibernateTypeForEnumProcessor</annotationProcessor>
                    <annotationProcessor>de.zzz.annotation.processor.GenerateHibernateTypeForWertelistenProcessor</annotationProcessor>
                    <annotationProcessor>de.zzz.annotation.processor.BusinessObjectAnnotationProcessor</annotationProcessor>
                    <annotationProcessor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</annotationProcessor>
                </annotationProcessors>
            </configuration>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<profiles>
    <profile>
        <id>m2e</id>
        <activation>
            <property>
                <name>m2e.version</name>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin> 
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <executions>
                        <execution>
                            <goals>
                                <goal>compile</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

亲爱的大家,

在我的project中实施mapstruct ,我需要一些帮助。 我已经有一些注释处理器,需要在maven的pom.xml中命名。 Mapstruct建议在pom.xml中添加annotationProcessorPaths Mapstruct 似乎不可能在同一pom中同时使用这两个批注( annotationProcessorPathsannotationProcessor )。 如果这样做,我会得到错误

无法在项目yyy数据上执行目标org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile(默认):编译失败[ERROR]注释处理器'de.zzz.annotation.processor.GenerateHibernateTypeForEnumProcessor'未找到

我确实缩短了pom。 因此,可能存在比实际需要更多的依赖关系。

在此先感谢Oliver

您仍然可以使用annotationProcessor 您将需要添加mapstruct-processor在你的依赖,然后添加org.mapstruct.ap.MappingProcessorannotationProcessor

为什么你看到的错误的原因是因为当你定义annotationProcessorPathsmaven-compiler-plugin将只使用那些寻找注解处理器,而不是你的其他依赖。

另外,您还可以添加您在拥有所有的注解处理器annotationProcessoPaths ,而不是如果你的依赖。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM