import org.springframework.cloud.sleuth.Tracer;
@Autowired private Tracer tracer;
// 获取traceId和spanId String traceId = tracer.currentSpan().traceIdString(); String parentId = tracer.currentSpan().parentIdString();
// 记录到日志中 logger.info("Trace Id: " + traceId + ", Parent Id: " + parentId);
这样就可以在ActiveMQ监听器中记录Sleuth traceId和spanId了。