我正在将spring批处理从3.x升级到4.3。目前,我们正在使用spring批处理集成和xml配置通过mq放置和接收消息。 Spring 第四批上市 @EnableBatchIntegration
相应的xmlxsd是
xmlns:batch-int="http://www.springframework.org/schema/batch-integration"
http://www.springframework.org/schema/batch-integration
https://www.springframework.org/schema/batch-integration/spring-batch-integration.xsd
您能告诉我如何在下面两个xml元素配置中使用xml中的批处理int配置吗?
<batch-int:remote-chunking-manager message-template="" step="" reply-channel="" id=""/>
<batch-int:remote-chunking-worker output-channel="" item-writer="" input-channel="" id=""/>
1条答案
按热度按时间1cosmwyk1#
springbatch参考文档提供了一个切换(在每个页面的顶部)来显示xml或java配置样式(或两者)中的代码示例。然而,在远程分块/分区部分中似乎只有java配置示例,缺少xml等价物。我为此创造了一个问题:https://github.com/spring-projects/spring-batch/issues/3858.
同时,以下是用于远程分块的等效xml片段:
辅助进程设置
管理器设置