问题描述
无法找不到实现类 Cannot find implementation
。
解决方案
1. 包含 Swagger 依赖
在项目中使用了 swagger,需要将其中的 mapstruct 排除后,重新在 pom 中添加。
1 2 3 4 5 6 7 8 9 10
| <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <exclusions> <exclusion> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </exclusion> </exclusions> </dependency>
|
重新引入:
1 2 3 4 5 6 7 8 9 10 11 12
| <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-jdk8</artifactId> <version>${mapstruct.version}</version> </dependency>
|