Im working in a Spring Reactive application. I know how get a PathVariable in a interceptor with HttpServletRequest, some like that:
request.getAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE);
But we had to make some changes and now we have a WebFilter implementation, so we don't use HttpServletRequest, instead we use ServerWebExchange
How can I get a Pathvariable from ServerWebExchange? Its possible?