我正在开发一项使用 spring 集成 java dsl 发送电子邮件的服务。
我有一条批处理消息,它被分成一组单独的消息,这些消息将变成电子邮件。
我遇到的问题是,如果这些单独的消息之一引发错误,则不会处理批处理中的其他消息。
有没有办法配置流程,以便在消息引发异常时,优雅地处理异常并处理批处理中的下一条消息?
以下代码实现了我想要的功能,但我想知道是否有更简单/更好的方法来实现这一点,理想情况下是在单个 IntegrationFlow 中?:
@Bean
public MessageChannel individualFlowInputChannel() {
return MessageChannels.direct().get();
}
@Bean
public IntegrationFlow batchFlow() {
return f -> f
.split()
.handle(message -> {
try {
individualFlowInputChannel().send(message);
} catch (Exception e) {
e.printStackTrace();
}
});
}
@Bean
public IntegrationFlow individualFlow() {
return IntegrationFlows.from(individualFlowInputChannel())
.handle((payload, headers) -> {
throw new RuntimeException("BOOM!");
}).get();
}