我有这条路线
from("timer:aTimer?fixedRate=true&period="+ ReaderXmlVenta.MILISEC_VENTA)
.setHeader(Exchange.HTTP_METHOD, constant("GET"))
.to("http4://"+ReaderXmlVenta.URL_VENTA)
.marshal(xmlJsonFormat)
.process("camelProcessor")
.to("mongodb:mongoBeandatabase=eicas&collection=sales&operation=update)
.to("log:org.apache.camel.example?level=DEBUG")
.to("log:Ok:Se guardo un registro Venta fija");
但是,我需要过滤查询更新确定注册表
我是怎么做到的? 我是否必须在路径或“camelProcessor”中的查询中添加过滤器?