このソースからアプリケーションをダウンロードしました https://github.com/springframeworkguru/spring5-mvc-rest/tree/vendor-api そして、MapStructに問題があります。
@Mapper
public interface CategoryMapper {
CategoryMapper INSTANCE = Mappers.getMapper(CategoryMapper.class);
CategoryDTO categoryToCategoryDTO(Category category);
}
@Data
public class CategoryDTO {
private Long id;
private String name;
}
ドメインクラス:
@Data
@Entity
public class Category {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
}
サービスクラス:
@Service
public class CategoryServiceImpl implements CategoryService {
private final CategoryMapper categoryMapper;
private final CategoryRepository categoryRepository;
public CategoryServiceImpl(CategoryMapper categoryMapper, CategoryRepository categoryRepository) {
this.categoryMapper = categoryMapper;
this.categoryRepository = categoryRepository;
}
}
そして、pom.xml依存関係では、2つだけ貼り付けます。
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<Java.version>1.8</Java.version>
<org.mapstruct.version>1.2.0.CR2</org.mapstruct.version>
</properties>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<version>${org.mapstruct.version}</version>
</dependency>
そしてプラグイン:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<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>
<compilerArgs>
<compilerArg>
-Amapstruct.defaultComponentModel=spring
</compilerArg>
</compilerArgs>
</configuration>
</plugin>
説明:
Parameter 0 of constructor in
guru.springfamework.services.CategoryServiceImpl required a bean of type 'guru.springfamework.api.v1.mapper.CategoryMapper' that could not be found.
アクション:
Consider defining a bean of type 'guru.springfamework.api.v1.mapper.CategoryMapper' in your configuration.
私のIntellijアノテーションでは、@ Mapperはマッパー用のBeanを作成しないと思います。 John GitHubからコードを変更していません。何か案が?パス生成されたソースをターゲットに変更しようとしましたが、これは役に立ちません。ありがとうございます。
私はエラーを解決しました
これもあなたのポンに追加します
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<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>
<compilerArgs>
<compilerArg>
-Amapstruct.defaultComponentModel=spring
</compilerArg>
</compilerArgs>
</configuration>
</plugin>
私も同じ問題を抱えていました。 Gradleでは、新しい依存関係を追加して解決しました。
compileOnly('org.mapstruct:mapstruct-processor:1.3.0.Beta2')
そして、必要な依存関係はすべて次のようになります。
compile('org.mapstruct:mapstruct:1.3.0.Beta2')
compileOnly('org.mapstruct:mapstruct-processor:1.3.0.Beta2')
annotationProcessor('org.mapstruct:mapstruct-processor:1.3.0.Beta2')
マッパーをBeanとして使用し、_@Autowired
_を使用するには、マッパーを@Mapper(componentModel = "spring")
として宣言するだけです。次に、必要な場所に注入します。
問題は、@Mapper
構文を使用すると、デフォルトでクラスwithout @Componentアノテーションが生成されることです。
プロジェクトのコンパイルにMavenを使用していない可能性があります。 Maven clean
およびinstall
を実行するか、コンパイラー引数mapstruct.defaultComponentModel=spring
を手動で渡してください。
あなたが使っているので:
<compilerArgs>
<compilerArg>
-Amapstruct.defaultComponentModel=spring
</compilerArg>
</compilerArgs>
これは、MapStruct
にSpring Component
を生成するように指示します。
コンパイルされたターゲットクラスをチェックし、逆コンパイラで開く場合(IDEがこれをサポートしている場合)、@ Componentで注釈されたCategoryMapperImpl
があるはずです。
これはIntelliJだけでは機能しないと思います。 IntelliJが実際にMavenコンパイラannotationProcessorPaths
から注釈プロセッサを取得しないという既知の問題があります(詳細については IDEA-150621 を参照)。
その上、リンクされたリポジトリの例は、MapStructのベストプラクティスに違反しています。 spring
componentModel
を使用すると、Mappers.getMapper
は使用しないでください。これは、スプリングを介して構築する必要があるため、ファクトリーがマッパーを正しく構築できないためです。また、コンパイラー引数mapstruct.defaultComponentModel
はピックアップされていないため、IDEとの統合が壊れる可能性があります(IntelliJ設定でも設定する必要があります)
IntelliJで注釈プロセッサを有効にする必要があります。
[設定]-> [ビルド、実行、配置]-> [コンパイラ]-> [注釈プロセッサ]をクリックし、[注釈処理を有効にする]チェックボックスをクリックします。