-
Notifications
You must be signed in to change notification settings - Fork 125
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
Support for arrays as parameters #890
Milestone
Comments
Sounds reasonable. Thank your for bringing this forward. |
andymc12
added a commit
to andymc12/jaxrs-api
that referenced
this issue
Aug 3, 2020
Signed-off-by: Andy McCright <[email protected]>
andymc12
added a commit
to andymc12/jaxrs-api
that referenced
this issue
Aug 4, 2020
Signed-off-by: Andy McCright <[email protected]>
andymc12
added a commit
that referenced
this issue
Aug 18, 2020
[#890] All array types to be used as parameters
mkarg
pushed a commit
to mkarg/rest
that referenced
this issue
Nov 10, 2020
Signed-off-by: Andy McCright <[email protected]>
mkarg
pushed a commit
to mkarg/rest
that referenced
this issue
Nov 11, 2020
Signed-off-by: Andy McCright <[email protected]>
mkarg
pushed a commit
to mkarg/rest
that referenced
this issue
Nov 11, 2020
Signed-off-by: Andy McCright <[email protected]>
mkarg
pushed a commit
that referenced
this issue
Nov 14, 2020
Signed-off-by: Andy McCright <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Section 3.2 says the following:
It seems like we should support array types in places where we support
List
types (e.g.@CookieParam
,@FormParam
,@HeaderParam
,@MatrixParam
, and@QueryParam
-@BeanParam
and@PathParam
do not support Lists, so should not support arrays either).The MicroProfile Metrics community incorrectly assumed that arrays were already supported (see conversation here: https://groups.google.com/forum/#!topic/microprofile/yxoelXvk3o8 ).
Arrays already seem to be supported in Apache CXF and RESTEasy. I have not tested Jersey, but I assume that they are not supported based on the MP Metrics conversation.
If nobody objects, I can open a PR to update the spec text and Javadoc. Since this changes behavior, it would need to be released post-EE9.
The text was updated successfully, but these errors were encountered: