-
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
REST Reactive Server: support multiple outparts with the same key in MultipartFormDataOutput #42053
Labels
Milestone
Comments
/cc @FroMage (resteasy-reactive), @stuartwdouglas (resteasy-reactive) |
Seems reasonable to me, let me take a look |
geoand
added a commit
that referenced
this issue
Jul 23, 2024
Allow MultipartFormDataOutput to specify items with the same key
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Jul 23, 2024
Closes: quarkusio#42053 (cherry picked from commit 392d68c)
barreiro
pushed a commit
to barreiro/quarkus
that referenced
this issue
Jul 25, 2024
holly-cummins
pushed a commit
to holly-cummins/quarkus
that referenced
this issue
Jul 31, 2024
danielsoro
pushed a commit
to danielsoro/quarkus
that referenced
this issue
Sep 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Unfortunately the Quarkus REST (Reactive) server side implementation of
MultipartFormDataOutput
does not support multiple form data with the same key. This is very inconvenient if you're coming from resteasy classic, where this is supported.e.g. this formData will return only the last added part, because internally it is kept in a linkedhashmap.
Hope you can me help out here. I my use case
MultipartFormDataOutput
is very useful, because you can return binary data, which is loaded from a database and temporarily written to a tempfile for deletion, when response is sent.Thanks and keep up the marvelous work!
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: