英文:
Can I use spring batch writer to for both HTTP post request and write to db
问题
我想从数据库中读取一系列记录,然后对其进行迭代,并针对每个记录执行以下操作:
- 解析生成 JSON 主体的数据,并发送 HTTP POST 请求。
- 根据上述 HTTP POST 的结果更新数据库。
我想使用 Spring-Batch 框架来管理多节点同步。是否可以使用这个框架?
英文:
I would like to read a list of records from DB, then iterate over it, and perform the following actions for each record:
- Resolve data for generating JSON body, and send HTTP post request.
- Update DB, according to the above HTTP post result.
I would like to use Spring-Batch framework on order to manage multi node sync.
Its it possible to use this framework ?
答案1
得分: 1
你可以使用CompositeItemWriter
,其中包含两个委托项目写入器:一个用于发送POST请求,另一个用于更新数据库。
英文:
You can use a CompositeItemWriter
with two delegate item writers: one that sends the post request, and the other updates the DB.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论