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")