我正在尝试使用事件过滤器,以使用新版本的Spring Cloud Stream(Chelsea.RC1)中提供的新功能来减少应用程序使用的主题数量。正在使用正确的标头创建该消息,但是,检查队列中该消息的内容时,该消息不包含标头,仅包含带有有效内容的正文。

public void sendEnroll(EnrollCommand data) {

    //MessageChannel
    outputEnroll.send(MessageBuilder
            .withPayload(data)
                .setHeader("brand", "MASTERCARD")
                .setHeader("operation", Operation.ENROLL).build());
}


消费者

@Service
@EnableBinding(Channel.class)
public class EnrollConsumer {

@Autowired
private EnrollService service;

@StreamListener(target = Channel.INPUT_ENROLL, condition = "headers['brand']=='MASTERCARD'")
public void enrollConsumer(@Payload String command){
    System.out.println(command);
    //service.enrollment(command);
 }
}


在消费者服务中,它给出以下警告:

WARN -kafka-listener-1 o.s.c.s.b.DispatchingStreamListenerMessageHandler:62 - Cannot find a @StreamListener matching for message with id: 7baae934-7484-a7fd-91b0-ba906558bb13

最佳答案

您必须映射您的自定义标题:

spring.cloud.stream.kafka.binder.headers = brand,operation


该信息存在于documentation中。

10-07 19:30
查看更多