我有非常简单的pojo类:
public class MessageBean {
String text;
public String getMessage()
{
return text;
}
}
骆驼路线:
public static void main(String[] args) {
final MessageBean bean = new MessageBean();
bean.text = "This is the text";
CamelContext context = new DefaultCamelContext();
ConnectionFactory conFactory = new ActiveMQConnectionFactory("tcp://127.0.0.1:61616");
context.addComponent("jms", JmsComponent.jmsComponentAutoAcknowledge(conFactory));
try {
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:hello").process(new Processor() {
public void process(Exchange exchange) throws Exception {
exchange.getIn().setBody(bean);
}
}).setBody(simple("${body.message}")).to("jms:queue:Test.Queue");
}
});
} catch (Exception e) {
e.printStackTrace();
}
try {
context.start();
Thread.sleep(5000);
context.stop();
} catch (Exception e) {
e.printStackTrace();
}
}
我不明白为什么我不能将文件从bean变量text
发送到activemq队列?
当我尝试从文件夹发送txt文件时,它正确地发送到jms中的队列。
答案 0 :(得分:1)
要将邮件插入到驼峰路由中,您需要将其发送到路由中的使用者端点,在本例中为direct:start
。这里最简单的方法是使用ProducerTemplate
。在您的上下文开始后:
ProducerTemplate template = context.createProducerTemplate();
template.sendBody("direct:start", bean);
虽然如果你最终只想将bean.getMessage()
的内容发送到你的JMS队列(这就是你在这里尝试做的那样),你可以改为执行此操作并删除{{1从您的路线呼叫:
setBody()