return concretions (#3373)
This commit is contained in:
parent
38912423c1
commit
700221ad07
|
@ -44,7 +44,7 @@ public class BatchJobConfig {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@StepScope
|
@StepScope
|
||||||
public ItemReader<String> reader() {
|
public SampleItemReader reader() {
|
||||||
return new SampleItemReader();
|
return new SampleItemReader();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ public class MdmClearJobConfig {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@StepScope
|
@StepScope
|
||||||
public ItemProcessor<List<Long>, List<String>> deleteThenExpungeCompositeProcessor() {
|
public CompositeItemProcessor<List<Long>, List<String>> deleteThenExpungeCompositeProcessor() {
|
||||||
CompositeItemProcessor<List<Long>, List<String>> compositeProcessor = new CompositeItemProcessor<>();
|
CompositeItemProcessor<List<Long>, List<String>> compositeProcessor = new CompositeItemProcessor<>();
|
||||||
List itemProcessors = new ArrayList<>();
|
List itemProcessors = new ArrayList<>();
|
||||||
itemProcessors.add(mdmLinkDeleter());
|
itemProcessors.add(mdmLinkDeleter());
|
||||||
|
|
|
@ -177,7 +177,7 @@ public class BulkImportJobConfig {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@StepScope
|
@StepScope
|
||||||
public ItemWriter<ParsedBulkImportRecord> bulkImportFileWriter() {
|
public BulkImportFileWriter bulkImportFileWriter() {
|
||||||
return new BulkImportFileWriter();
|
return new BulkImportFileWriter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue