72.6. Samples
例如,如果您想要消耗所有插入、更新和删除本地的 CouchDB 实例,在端口 9999 上,您可以使用以下内容:
from("couchdb:http://localhost:9999").process(someProcessor);
如果您只想删除,您可以使用以下内容
from("couchdb:http://localhost:9999?updates=false").process(someProcessor);
如果要将消息作为文档插入,则使用交换的正文
from("someProducingEndpoint").process(someProcessor).to("couchdb:http://localhost:9999")