自方法 postReceive
的 org.springframework.messaging.support.ChannelInterceptor
未在中调用 org.springframework.messaging.SubscribableChannel
. 是否有任何方法可以截获带注解方法的所有传入消息 @StreamListener(Sink.INPUT)
?
例如:
在进入前拦截消息 handle
方法
@StreamListener(Sink.INPUT)
public void handle(Foo foo) {
// ...
}
下面是我的 Spring 云流设置
public interface EventSink {
String INPUT1 = "input1";
String INPUT2 = "input2";
@Input(INPUT1)
SubscribableChannel input1();
@Input(INPUT2)
SubscribableChannel input2();
}
public interface EventSource {
String OUTPUT1 = "output1";
String OUTPUT2 = "output2";
@Output(OUTPUT1)
MessageChannel output1();
@Output(OUTPUT2)
MessageChannel output2()';
}
spring:
cloud:
stream:
bindings:
input1:
destination: input1
input2:
destination: input2
output1:
destination: output1
output2:
destination: output2
public class EventHandler {
@StreamListener(EventSink.INPUT1)
public void handle(Foo1 foo) {
// ...
}
@StreamListener(EventSink.INPUT2)
public void handle(Foo2 foo) {
// ...
}
}
@Service
public class Bar1Service {
@Autowired
private EventSource source;
public void bar1() {
source.output1().send(MessageBuilder.withPayload("bar1").build());
}
}
@Service
public class Bar2Service {
@Autowired
private EventSource source;
public void bar2() {
source.output2().send(MessageBuilder.withPayload("bar2").build());
}
}
1条答案
按热度按时间5anewei61#
用一个
DirectChannel
绑定器在同一线程上调用侦听器,因此preSend
在这里是合适的。不过,你不必惹麻烦
ThreadLocal
,您可以使用方法签名访问标头。。。编辑