spring-rest-template-logger icon indicating copy to clipboard operation
spring-rest-template-logger copied to clipboard

Spring RestTemplate customizer to log HTTP traffic.

Results 6 spring-rest-template-logger issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, This library works great for logging requests/ responses in dev/prod environments. Unfortunately, after installing this library and running my test suite, I got failures in all instances where I...

We should truncate the logged request/response bodies to something sensible like 1K.

We currently use `BufferingClientHttpRequestFactory` to buffer the response body so that it can be used by the next consumer and for logging. Consider using a tee input stream to log...

We currently only log the request/response body but we should allow headers to be logged too.

We currently log all media types but we should restrict this to text-based ones: * `text/*` * `application/xml` * `application/json` * `*/*+xml` * `*/*+json` Non-text based media types should be...

Enable OpenJDK 17 compatibility. Added openrewrite plugin to facility the transition