You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Spring-web RequestMapping allows for wildcard definitions within paths that have a different syntax from valid jax-rs paths.
In order to facilitate support of spring-web applications without developers having to re-define path mappings, quarkus should fully support the spring-web syntax in @RequestMapping definitions.
Expected behavior
e.g @GetMapping("/wildcard/*/{name}") should map /wildcard/1/Quarkus, currently returns HTTP 404, whereas /wildcard/*/Quarkus returns HTTP 200
@RequestMapping("/car?/s?o?/info") should also map urls "/cars/shop/info" and "/cart/show/info"
Describe the bug
Spring-web RequestMapping allows for wildcard definitions within paths that have a different syntax from valid jax-rs paths.
In order to facilitate support of spring-web applications without developers having to re-define path mappings, quarkus should fully support the spring-web syntax in @RequestMapping definitions.
Expected behavior
e.g
@GetMapping("/wildcard/*/{name}")
should map/wildcard/1/Quarkus
, currently returns HTTP 404, whereas/wildcard/*/Quarkus
returns HTTP 200@RequestMapping("/car?/s?o?/info")
should also map urls "/cars/shop/info" and "/cart/show/info"To Reproduce
Steps to reproduce the behavior:
git clone git@github.com:johnaohara/quarkusSpringWebWildcards.git
cd quarkusSpringWebWildcards
mvn clean test
The text was updated successfully, but these errors were encountered: