我是使用camel的新手,我需要在JAVA中构建一个路由来处理http请求返回的一些xml。我试图通过设置一个带处理器的路径来解析响应的主体,并将其记录到一个文件,将消费者设置为http url,但它没有工作。然后我尝试建立一个jms队列来抓取并从队列中处理它,结果类似。 我想我得到200响应,但我设置它写入的生产者文本文件不起作用,并且DEBUG中的log4j在隔离问题方面没有太多信息。有没有人对这个问题有任何见解,指出我在正确的骆驼方向?提前谢谢!
public static void main(String[] args) throws Exception {
CamelContext camelContext = new DefaultCamelContext();
// connect to embedded ActiveMQ JMS broker
ConnectionFactory connectionFactory =
new ActiveMQConnectionFactory("vm://localhost");
camelContext.addComponent("jms",
JmsComponent.jmsComponentAutoAcknowledge(connectionFactory));
try {
camelContext.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.to("http://tomcatappurl:8080/format=xml?bridgeEndpoint=true")
.process(new OrderProcessor())
.to("log:DEBUG?showBody=true&showHeaders=true")
.log("file:C:/Desktop/camellog1.txt")
.to("log:DEBUG?showBody=true&showHeaders=true")
.log("${headers}")
.convertBodyTo(String.class)
.to("file:C:/Desktop/camellog1.txt")
.log("${in.headers}")
.to("stream:out")
.to("jms");
from("jms:incomingOrders")
.process(new Processor() {
public void process (Exchange exchange) throws Exception {
//HttpServletRequest request = exchange.getIn().getBody(HttpServletRequest.class);
System.out.println("Response received from Google, is streamCaching = " + exchange.getContext().isStreamCaching());
System.out.println("----------------------------------------------IN MESSAGE--------------------------------------------------------------");
System.out.println(exchange.getIn().getBody(String.class));
System.out.println("----------------------------------------------OUT MESSAGE--------------------------------------------------------------");
//System.out.println(exchange.getOut().getBody(String.class)); //Activating this line causes empty response on browser
}
})
.to("file:C:/Users/Desktop/camellog1.txt?fileExist=Append");
}
});
camelContext.start();
} finally {
camelContext.stop();
}
}
答案 0 :(得分:0)
我认为你的路线没有运行。
你需要一些东西(比如timer)来触发你的路线,例如:
from("timer:myTimer?period=30s")
.to("direct:start");
Camel documentation for Direct component说:
direct:组件在生产者发送消息交换时提供对任何消费者的直接同步调用。
所以你需要别的东西来开始调用路线。
请注意,您的第一条路线必须完成正确的JMS队列:
// ... cut
.to("file:C:/Desktop/camellog1.txt")
.log("${in.headers}")
.to("stream:out")
.to("jms:incomingOrders");
没有队列名称的将无效。