Spring Batch - 如何在第一步ItemProcessor中执行第二步

时间:2017-10-10 20:53:50

标签: java spring-boot spring-batch

我在数据库中有两个表:

[(life)]="3000"

我使用Spring Batch处理这些表中的数据。我有一个步骤来读取/处理/编写每个客户端,第二步获取每个客户端的产品并为每个客户端生成一个文本文件,如下所示:

Customer Table
id | name 
------------
1  | X
2  | Y

Product Table
id | customer id | name 
--------------------------------
1  | 1           | iphone
2  | 1           | moto
3  | 2           | moto

如何为第一步(客户)的每次迭代运行第二步(产品)或如何以其他方式执行此操作?

0 个答案:

没有答案