I've implemented a Post filter in the spring cloud gateway. But I need the readable format (JSON Format of response body) before sending it to UI.
I'm getting exchange.getResponse(). (when i printed in console: org.springframework.http.server.reactive.ReactorServerHttpResponse@3891d61a
) But it is in the reactive object. I can't able to see the actual original response which is coming from API to post filter. I've searched numerous stackoverflow topics but couldn't get an actual solution. Please assist...
How to get Original response body in Spring cloud gateway (Webflux) Post filter
13.3k Views Asked by Dev-eloper At
2
There are 2 best solutions below
0

https://github.com/einsteinarbert/spring-webfux-response-logging Beware about Security Chain, maybe that filter will override your filter.
you can extract/read/modify/manipulate the request and response and their headers with the help of
ServerHttpRequestDecorator
&ServerHttpResponseDecorator
see belowNote: i implemented GatewayFilter because i have this logic in gateway service level, if you want to modify at micro service level you can use WebFilter