imdr0id
imdr0id
I'm experiencing the same issue with spring cloud gateway mvc. @spencergibb kindly help to check this issue
I had the same issue, i ended up overriding the ProxyExchangeHandlerFunction, `package com.apigateway; import lombok.extern.Slf4j.Slf4j; import org.springframework.beans.factory.ObjectProvider; import org.springframework.cloud.gateway.server.mvc.common.MvcUtils; import org.springframework.cloud.gateway.server.mvc.filter.HttpHeadersFilter; import org.springframework.cloud.gateway.server.mvc.handler.ProxyExchange; import org.springframework.cloud.gateway.server.mvc.handler.ProxyExchangeHandlerFunction; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpMethod; import...
@oexos yeah, while using the reactive server this will work, But our current setup won't allow us to use reactive server, because we're deploying this as a war to an...
@spencergibb : i was able to get the routes with the RouterFunction. ` ``` @Autowired List routerImplList; ``` private List getRoutes() { AtomicReference routesList = new AtomicReference(); routerImplList.forEach(a -> {...