-
Notifications
You must be signed in to change notification settings - Fork 656
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
HttpServerRoutes should support query parameters #68
Comments
This feature was implemented? |
@odravison No it is not. Are you interested in providing a PR? |
Maybe I do this soon. Just let me get a free time to do so. Do you know if this feature (query parameters) was implemented on HttpClient module? |
@odravison There is similar feature request for query params on the client #753 |
@odravison Also can you clarify the use case? Is it for routing? If yes can't you use the current API for custom predicates for routing? |
Note: When implementing this feature, we need to discuss also non URL-encode query parameters - #1561 |
From 2017 to 2022 and still nothing :| |
Defining a route [1] like
get should accept query parameters in some way.
For example, a call like
should be handled by the "get" route and not the second "route" one, as there is match in the path.
[1] https://github.com/reactor/reactor-netty/blob/master/src/main/java/reactor/ipc/netty/http/server/HttpServerRoutes.java#L174
P.S.: Testing this on 3.0.5.RELEASE version
The text was updated successfully, but these errors were encountered: