-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reactive routes - add @Param, @Header and @Body #10630
Conversation
mkouba
commented
Jul 10, 2020
- refactor param injectors
- resolves Allow injecting parameters and body in reactive routes #10596
Damn, I used |
- refactor param injectors - resolves quarkusio#10596
Are path parameters supported? Should it use the same |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I'm wondering about path parameter.
It looks like multiple parameters are not supported (eg. http://localhost:8080/foo?choice=1&choice=2). |
@cescoffier They are supported.
@gastaldi Yes, we always return the first value. But it should be easy to implement injection of |
@gastaldi Done ;-). |
- also add test for path params
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, good job!