java – Spring Batch配置错误

前端之家收集整理的这篇文章主要介绍了java – Spring Batch配置错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想配置Spring Batch作业,但是我收到错误,我无法理解是什么意思?

错误

enter image description here

读者:

import org.springframework.batch.item.ItemReader;

public class MoviesReader implements ItemReader

处理器:

import org.springframework.batch.item.ItemProcessor;

public class MoviesProcessor implements ItemProcessor

我需要更改并修复错误

谢谢.

最佳答案
您需要为块操作指定类型.在你的情况下,它将是< SearchResponseRO,Movie>.

return stepBuilderFactory.get("downloadStep").

没有类型,它默认为< Object,Object>:

stepBuilderFactory.get("test").chunk(10)
        .reader(new ItemReader

如果你看一下chunk方法的定义,它接受一个int,但返回SimpleStepBuilder< I,O>.因为无法实际为I和O提供类型,所以您必须将它们基本上转换为您想要的值.我相信.< Type>语法只是链接调用时直接转换的方便,所以以下两件事应该是相同的:

public void castGenericReturnType() {
    System.out.println(this.
原文链接:https://www.f2er.com/spring/431698.html

猜你在找的Spring相关文章