Anmol Bhatia

Results 6 comments of Anmol Bhatia

@ctlove0523 that wouldn't work for me as i need to forward the request to local endpoint within the gateway itself. The ForwardPathFilter modifies the request for me and i will...

Thanks @spencergibb that's exactly what i need to preserve the original path with request parameters. This was already being done in spring cloud zuul. Any idea if this will be...

@spencergibb will simply adding the additional exchange attributes help? wouldn't we also have to modify the `ForwardPathFilter` to preserve the request and route it as it to the local endpoint....

if the original path has path variables and query parameters then ideally these should be added.

What i ended up doing in my code was to write a custom filter to route to the internal path to my uri. ``` uri: forward:/ predicates: - Path=/api/v1/abc/*/xyz -...

@leventozkann You only need to add this additionally to use the dispatcher handler bean, rest of the code is same. ``` private final ObjectProvider dispatcherHandlerProvider; // do not use this...