请帮助我如何使用java config进行Spring Batch Partition作业。我必须根据帐号写分区作业。我不确定如何在Java配置中配置以下XML Bean。
<int:router input-channel="channel_in" default-output-channel="channel_default" expression="payload.name" ignore-channel-name-resolution-failures="true">
<int:mapping value="foo" channel="channel_one" />
<int:mapping value="bar" channel="channel_two" />
</int:router>