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