使用 Apache Camel 从 EMS 队列读取 xml 文件

Read an xml file from EMS queue using Apache Camel

见下方代码

public class VerifyModule extends RouteBuilder {

   public void configure() {
         from("EMS_QUEUE_ADDRESS")
            .to(localfile);
   }
}

1) 这是从 EMS 队列中读取的正确方法吗?有人可以给我一个工作示例吗?

2) 我如何实例化和使用此模块以便从 EMS 队列中读取并填充 localfile.txt

我知道这是 Tibco EMS。如果是这样,您需要连接一个 jms 组件并执行

参考:http://camel.apache.org/jms.html