在一个 spring 集成项目中,我有一个同步发送和接收消息的出站网关。我想记录这种操作所花费的时间。
<jms:outbound-gateway id="jmsOutGateway"
request-destination="outQueue"
request-channel="outboundJmsRequests"
reply-channel="jmsReplies"/>
我尝试搜索但只能找到使用 AOP 和 PerformanceMonitorInterceptor 来跟踪方法的示例。