-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
area/springIssues relating to the Spring integrationIssues relating to the Spring integrationkind/bugSomething isn't workingSomething isn't working
Milestone
Description
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 [email protected]:johnaohara/quarkusSpringWebWildcards.git
cd quarkusSpringWebWildcards
mvn clean test
Metadata
Metadata
Assignees
Labels
area/springIssues relating to the Spring integrationIssues relating to the Spring integrationkind/bugSomething isn't workingSomething isn't working