springboot 2.6.7 集成mapStruct 及找不到符号 变量log问题记录

前言

最近接触一个新项目,出于对性能的考虑,写东西时做对象转换不使用BeanUtils来处理,手写对象转换代码挺费时间,于是引入对象转换神器mapstruct,记录下过程。

mapstruct参考资料

  • mapstruct github地址
  • mapstruct 官网

引入配置

...
<!- mapstruct版本 ->
<properties>
    <org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
</properties>
...
<dependencies>
    <dependency>
        <groupId>org.mapstruct</groupId>
        <artifactId>mapstruct</artifactId>
        <version>${org.mapstruct.version}</version>
    </dependency>
</dependencies>
...
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
                <annotationProcessorPaths>
                    <path>
                        <groupId>org.mapstruct</groupId>
                        <artifactId>mapstruct-processor</artifactId>
                        <version>${org.mapstruct.version}</version>
                    </path>
                </annotationProcessorPaths>
            </configuration>
        </plugin>
    </plugins>
</build>
...

问题

  • 引入mapstruct后lombok冲突,表现出构建时抛出找不到@Slf4j log 符号。
    在这里插入图片描述
  • 我的解决方法
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
                <annotationProcessorPaths>
                	<!- 增加lombok注解支持 解决找不到log 符号问题->
                	<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>
    </plugins>
</build>

你可能感兴趣的:(springboot,问题记录,spring,boot,后端)