Apache Camel使用“from”系统的“Camel based Component”获取消息,并使用“to”系统的“Camel based Component”将它们丢弃。一条消息可以路由到多个系统,但在任何地方,它们都必须通过“Camel based Components”才能在“Apache Camel的底层传输机制”和系统之间传输。
from("servlet:item-delta?matchOnUriPrefix=true&httpMethodRestrict=POST").routeId("Item-DeltaRESTRoute").log(LoggingLevel.INFO, "Item Delta received on Item-DeltaRESTRoute").split(stax(Product.class)).parallelProcessing().process(itemDeltaProcessor);