我在DirA中拥有file1.jpg,file2.jpg,file3.jpg。 我在DirB中有file1.json,file2.json,file3.json
我该如何创建一个Apache骆驼文件路径,使得第一个路径从DirA中选择file1.jpg,然后将file1
名称传递给第二个路径,以便它可以读取file1.json和过程。
CamelContext context = new DefaultCamelContext();
context.addRoutes(new RouteBuilder() {
public void configure() {
from("file:///DirA/?noop=true"). bean(MyBean.class,"doSomeThingWithJPG(${file:absolute.path})").
from("file:///DirB/?noop=true&fileName=${file:name}.json").
bean(AnotherBean.class,"doSomeThingWithJSON(${file:absolute.path})") ;
}
})
第二个from (file:///)
组件也指向DirA中的文件而不是DirB中的文件