Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在玩 MP Reactive Messaging 和 MP Opentracing,但我不知道如何跟踪通过 Reactive Messaging 发送的消息。
是否甚至可以跟踪使用@Income / @Outcome 注释的方法?
您应该找到一个import org.eclipse.microprofile.reactive.messaging.spi.IncomingConnectorFactory;专用于@Incoming和import org.eclipse.microprofile.reactive.messaging.spi.OutgoingConnectorFactory;用于的扩展类@Outgoing
import org.eclipse.microprofile.reactive.messaging.spi.IncomingConnectorFactory;
@Incoming
import org.eclipse.microprofile.reactive.messaging.spi.OutgoingConnectorFactory;
@Outgoing
取决于您使用的扩展程序。您应该拥有它,因为它是连接器或向通道发送和接收消息的部分