In a spring integration project I have a outbound gateway to send and receive messages synchronously. I would like to log the time taken for such an operation.
<jms:outbound-gateway id="jmsOutGateway"
request-destination="outQueue"
request-channel="outboundJmsRequests"
reply-channel="jmsReplies"/>
I tried searching but could only find examples of using AOP and PerformanceMonitorInterceptor to trace methods.