我正在尝试与 Apache Camel 捆绑的 JMS 示例
ApplicationContext context = new ClassPathXmlApplicationContext("camel-config.xml");
producer)
ProducerTemplate camelTemplate = context.getBean("camelTemplate", ProducerTemplate.class);
System.out.println("Invoking the multiply with 22");
int responseData = (Integer)camelTemplate.sendBody("jms:queue:numbers", ExchangePattern.InOut, 22);
System.out.println("... the result is: " + responseData);
这是代码。当我作为独立应用程序运行时,这非常有效。
我刚刚放入一个 servlet 并尝试运行它。我收到此错误 OUT 消息未在内部收到