2

is there a way (eg. interceptor) to log the request send via Spring Integration http outbound gateway?

Jatin
  • 63
  • 2
  • 8

1 Answers1

1

Yes; inject a ClientHttpRequestInterceptor implementation into the RestTemplate used by the outbound gateway.

Inject the template in the gateway using the rest-template attribute.

Gary Russell
  • 166,535
  • 14
  • 146
  • 179