我在Apache camel中有以下路线:
from("from.uri")
.filter(xpath("//x:y/x:z[x:a = '{{a.property}}'")
.setHeader("subject",
xpath("concat('{{another.property}}New mail (', //x:y/x:z, ')')")
.stringResult())
.to("{{to.uri}}");
但是,在致电#filter
时,替换无效,而在调用#setHeader
时则为
是否有理由或者我可能会错过其他的东西?