85.9. 使用 multipleConsumers
在本例中,我们定义了两个消费者,并将其注册为 spring beans。
<!-- define the consumers as spring beans --> <bean id="consumer1" class="org.apache.camel.spring.example.FooEventConsumer"/> <bean id="consumer2" class="org.apache.camel.spring.example.AnotherFooEventConsumer"/> <camelContext xmlns="http://camel.apache.org/schema/spring"> <!-- define a shared endpoint which the consumers can refer to instead of using url --> <endpoint id="foo" uri="disruptor:foo?multipleConsumers=true"/> </camelContext>
由于我们在 Disruptor foo 端点上指定了 multipleConsumers=true,因此我们可以有这两个或更多个消费者接收自己的消息副本作为 pub-sub 风格的消息传递。由于 Bean 是单元测试的一部分,它们只是将消息发送到模拟端点,但请注意我们如何使用 @Consume 从 Disruptor 使用。
public class FooEventConsumer { @EndpointInject(uri = "mock:result") private ProducerTemplate destination; @Consume(ref = "foo") public void doSomething(String body) { destination.sendBody("foo" + body); } }