-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Introduce @Separator annotation for query parameters #29550
Conversation
...ts/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/Separator.java
Show resolved
Hide resolved
This annotation allows to actually turn a String into a List<String> automatically for each query param value Resolves: quarkusio#29528
@Sgitario what do you think about this one? |
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.
I can't say I'm a big fan of this feature, but if this is something that already exists in Resteasy Classic, go for it.
The implementation looks really good to me!
Thanks for checking |
@geoand
Is that not possible at all or should be a valid use case? |
It is a valid use case. We'll need to take care of that as well |
Follows up on: quarkusio#29550
#29735 takes care of it |
Make @Separator work with @BeanParam as well
Follows up on: quarkusio#29550
Follows up on: quarkusio#29550 (cherry picked from commit 2b83f06)
Is the |
It seems we forgot to add it, so I opened #41146 to include it. |
This annotation allows to actually turn a String into a List automatically for each query param value
Resolves: #29528
P.S. A follow up that we might want to have is to introduce validation on the annotation's use