在我的camel项目中,我需要向网关发送一些消息(它将作为JMS消息接收它)。
在我的camel项目中,我的代码如下所示:
@Produce(uri = "xxx")
private ProducerTemplate template;
@Override
public void sendToQueue(String textMessage, Map<String, String> properties) {
template.sendBodyAndHeaders(textMessage, properties);
}
我只是想知道如何发送批量邮件。
因为在我的骆驼项目中,每天都会运行一个计划表并收集数据(大约1000)---&gt;队列---&gt;文件系统为1000个文件。
非常感谢您的协助。
答案 0 :(得分:1)
我担心JMS不支持发送批量邮件和模板sendBodyAndHeaders meothd也不支持发送批量邮件。