3

我使用EclipseIDE 开发了一个应用程序,Mapstruct现在我正在IntelliJ继续开发。

在 Eclipse 上一切正常,但由于使用annotationProcessorPaths.

我的配置如下:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
    <annotationProcessorPaths>
        <path>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-processor</artifactId>
            <version>${mapstruct.version}</version>
        </path>
    </annotationProcessorPaths>
    <source>${java.version}</source>
    <target>${java.version}</target>
    <compilerArgs>
        <compilerArg>
            -Amapstruct.defaultComponentModel=${mapstruct.defaultComponentModel}
        </compilerArg>
        <compilerArg>
            -Aorg.hibernate.jpamodelgen.JPAMetaModelEntityProcessor
        </compilerArg>
    </compilerArgs>
</configuration>

在 IntelliJ 上,当我启动 Maven 全新安装时,我得到了生成的源代码:

@Component

public class FieldMapperImpl implements FieldMapper {

    @Autowired

    private FieldMapperResolver fieldMapperResolver;

...
}

但是当我运行/调试我的 Spring Boot 应用程序时,我得到的生成源是:

public class FieldMapperImpl implements FieldMapper {

    private final FieldMapperResolver fieldMapperResolver = new FieldMapperResolver();
    ...
    }

我怎么解决这个问题 ?

4

1 回答 1

5

我假设您直接通过 IntelliJ 运行/调试 Spring Boot 应用程序。发生这种情况的原因是 IntelliJ 没有从maven-compiler-plugin. 请参阅IDEA-143742IDEA-150621

您还必须单独配置 IntelliJ 注释处理器选项。您可以在 Settings -> Build, Execution, Deployment -> Compiler -> Annotation Processors 中找到它

奇怪的是 IntelliJ 甚至如何调用处理器,你mapstruct-processor的 pom 中是否也有依赖项?

编辑:IntelliJ 不选择 maven-compiler-plugin 编译器参数。默认组件模型是通过注释处理器选项设置的。为了使 IntelliJ 正确工作,应在 IntelliJ 配置中设置相同的属性或使用@Mapper(componentModel = "spring"). 文档中的更多信息

于 2017-04-24T15:06:18.967 回答