I'm in a Spring WebFlux context and i'm trying to use the double wildcard mapping feature.
As the documentation says (https://docs.spring.io/spring/docs/5.0.0.RELEASE/spring-framework-reference/web-reactive.html#webflux-ann-requestmapping-uri-templates)
Double wildcard should match any path segment. With this mapping value /**/c-{someId}
I expect to match all of this:
/c-123456
/foo/c-123456
/foo/bar/c-123456
Actually, it's matching one and only one path segment -> /foo/c-123456
Is there any solution ? Or should I report a issue ?