- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在没有 ItemWriter 的情况下定义了我的 tasklet :
<b:tasklet>
<b:chunk reader="baseReader" processor="baseProcessor" commit-interval="100" />
</b:tasklet>
我得到了这个错误:
配置问题:<b:chunk/>
元素既没有 'writer' 属性也没有 <writer/>
元素。
你有什么想法吗?谢谢
最佳答案
好吧,在一个 block 中,读者和作者是强制性的!但是,ItemProcessor 是可选的。
这是来自官方文档:
5.1.1. Configuring a Step
Despite the relatively short list of required dependencies for a Step, it is an extremely complex class that can potentially contain many collaborators. In order to ease configuration, the Spring Batch namespace can be used:
<job id="sampleJob" job-repository="jobRepository">
<step id="step1">
<tasklet transaction-manager="transactionManager">
<chunk reader="itemReader" writer="itemWriter" commit-interval="10"/>
</tasklet>
</step>
The configuration above represents the only required dependencies to create a item-oriented step:
reader - The ItemReader that provides items for processing.
writer - The ItemWriter that processes the items provided by the ItemReader.
transaction-manager - Spring's PlatformTransactionManager that will be used to begin and commit transactions during processing.
job-repository - The JobRepository that will be used to periodically store the StepExecution and ExecutionContext during processing (just before committing). For an in-line (one defined within a ) it is an attribute on the element; for a standalone step, it is defined as an attribute of the .
commit-interval - The number of items that will be processed before the transaction is committed.
It should be noted that, job-repository defaults to "jobRepository" and transaction-manager defaults to "transactionManger". Furthermore, the ItemProcessor is optional, not required, since the item could be directly passed from the reader to the writer.
关于java - Spring 批处理 : Tasklet without ItemWriter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17191889/
我正在尝试从数据库中选择数据,更新每个对象,然后更新项目写入器中的数据库。 我尝试在每次更新后刷新 DAO,但它没有改变任何内容。 配置非常基本,包括读取器、写入器和 100 的提交间隔。 阅读器正在
引用论坛中一个从未得到答案的老问题: Is it on purpose that I get an empty List as an input to the ItemWriter.write() m
我有一个 ItemWriter 的实现,它很好地保留了我的所有值对象。当第一个值对象(用于批处理作业)传递到 ItemWRiter 时,我可以执行单独的数据库插入,并保证进入 ItemWriter 的
我有一个域类如下 class SubScritpion{ private String subScripId; private String useId; private Date subSc
我读取了一个平面文件(例如每个用户 1 行的 .csv 文件,例如:UserId;Data1;Date2)。 但是如何处理阅读器中重复的用户项(其中没有以前阅读过的用户的列表...) stepBuil
我有以下代码 @Bean public JdbcBatchItemWriter writer1() { return new JdbcBatchItemWriterBuilder()
我正在尝试使用SpringBoot编写spring批处理。首先,程序将从数据库中读取数据,然后将其写入.csv格式的文件。 这是我尝试过的代码 阅读器 @Bean public Ite
我有一个简单的 Spring Batch 作业,有几个步骤,最后一步是编写报告,所以我有 ItemReader、ItemProcessor 和 ItemWriter。 ItemWriter 按 blo
我们的处理器返回 List (有效地将 List> )传递给我们的 ItemWriter . 现在,我们观察到 JdbcBatchItemWriter未编程处理 item instanceof Lis
我正在尝试使用以下配置来配置没有项目编写器的 Spring 批处理步骤。但是我得到错误说那个作家 element 既没有“writer”属性也没有元素。 我浏览了链接spring batch : Ta
我正在尝试生成以下格式的平面文件,该文件没有任何分隔符。 客户.java private String customerId; private String customerName; MyFla
我有一个 MultiResourceItemReader,可以从文件夹加载多个 csv 文件。 对于每个文件,我想更改 ItemWriter 生成的文件名。但是:怎么办? @Bean public M
我想从数据库写入json格式文件。我有这个 ItemWriter 实现的原型(prototype),非常简单。 import java.util.ArrayList; import java.util
我正在编写一个 Spring Batch 流程来将数据集从一个系统迁移到另一个系统。在这种情况下,这就像在传递给 ItemWriter 之前使用 RowMapper 实现从查询构建对象一样简单。 It
我开发了一个批处理 - 使用 spring batch ,它从数据库生成文件。 如果没有找到匹配的记录 - 批处理生成空文件。 如果没有找到匹配的记录,我想跳过这个文件生成。 我尝试寻求帮助,但没有找
本题是关于使用Window Media API输出4K WMV视频(虽然理论上WMV不支持输出到4K) 在 32 位和 64 位 Win10 上调用 IWMWriter->BeginWriting()
我在没有 ItemWriter 的情况下定义了我的 tasklet : 我得到了这个错误: 配置问题:元素既没有 'writer' 属性也没有 元素。 你有什么想法吗?谢谢 最佳答案 好
我有一个具有以下定义的批处理作业:
我是 Spring 批处理的新手,所以也许我错了,但我不明白为什么 itemWriter 中的 write 方法需要数据列表: void write(List items) throws Except
我要检索 JobParameter和 JobExecutionContext我的 ItemWriter 中的对象类(class)。 如何进行? 我尝试实现 StepExecutionListener通
我是一名优秀的程序员,十分优秀!