-
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
RESTEasy Reactive build failure with MULTIPART_FORM_DATA #19404
Milestone
Comments
/cc @FroMage, @geoand, @stuartwdouglas |
stuartwdouglas
added a commit
to stuartwdouglas/quarkus
that referenced
this issue
Aug 16, 2021
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Aug 17, 2021
Fixes quarkusio#19404 (cherry picked from commit aafbbf5)
jsmrcka
added a commit
to jsmrcka/quarkus-test-suite
that referenced
this issue
Aug 20, 2021
Add `http/jaxrs-reactive`, which is a RESTEasy reactive equivalent of `http/jaxrs`. Notable differenes and limitations: - In a multipart POJO, Java type for `image` and `octet-stream` were changed from `InputStream` to `File` - `InputStream` is not supported by `resteasy-reactive`. - Test of a functionality provided by the `quarkus.resteasy.multipart.input-part.default-charset` property has been disabled for now - it is unsupported in `resteasy-reactive`. quarkusio/quarkus#19527 - [FIXED] Possible bug in `resteasy-reactive` - endpoints consuming `MULTIPART_FORM_DATA` cause build failure. quarkusio/quarkus#19404. - Tests dealing with `text/plain` request/response have been disabled on Windows due to a bug. quarkusio/quarkus#19535
jsmrcka
added a commit
to jsmrcka/quarkus-test-suite
that referenced
this issue
Aug 20, 2021
Add `http/jaxrs-reactive`, which is a RESTEasy reactive equivalent of `http/jaxrs`. Notable differences and limitations: - In a multipart POJO, Java type for `image` and `octet-stream` were changed from `InputStream` to `File` - `InputStream` is not supported by `resteasy-reactive`. - Test of a functionality provided by the `quarkus.resteasy.multipart.input-part.default-charset` property has been disabled for now - it is unsupported in `resteasy-reactive`. quarkusio/quarkus#19527 - [FIXED] Possible bug in `resteasy-reactive` - endpoints consuming `MULTIPART_FORM_DATA` cause build failure. quarkusio/quarkus#19404. - Tests dealing with `text/plain` request/response have been disabled on Windows due to a bug. quarkusio/quarkus#19535
jsmrcka
added a commit
to jsmrcka/quarkus-test-suite
that referenced
this issue
Aug 20, 2021
Add `http/jaxrs-reactive`, which is a RESTEasy reactive equivalent of `http/jaxrs`. Notable differences and limitations: - In a multipart POJO, Java type for `image` and `octet-stream` were changed from `InputStream` to `File` - `InputStream` is not supported by `resteasy-reactive`. - Test of a functionality provided by the `quarkus.resteasy.multipart.input-part.default-charset` property has been disabled for now - it is unsupported in `resteasy-reactive`. quarkusio/quarkus#19527 - [FIXED] Possible bug in `resteasy-reactive` - endpoints consuming `MULTIPART_FORM_DATA` cause build failure. quarkusio/quarkus#19404. - Tests dealing with `text/plain` request/response have been disabled on Windows due to a bug. quarkusio/quarkus#19535
jsmrcka
added a commit
to jsmrcka/quarkus-test-suite
that referenced
this issue
Aug 25, 2021
Add `http/jaxrs-reactive`, which is a RESTEasy reactive equivalent of `http/jaxrs`. Notable differences and limitations: - In a multipart POJO, Java type for `image` and `octet-stream` were changed from `InputStream` to `File` - `InputStream` is not supported by `resteasy-reactive`. - Test of a functionality provided by the `quarkus.resteasy.multipart.input-part.default-charset` property has been disabled for now - it is unsupported in `resteasy-reactive`. quarkusio/quarkus#19527 - [FIXED] Possible bug in `resteasy-reactive` - endpoints consuming `MULTIPART_FORM_DATA` cause build failure. quarkusio/quarkus#19404. - Tests dealing with `text/plain` request/response have been disabled on Windows due to a bug. quarkusio/quarkus#19535
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Using
quarkus-resteasy-reactive
extension, I'm trying to do this:which should be fine (works for non-reactive
quarkus-resteasy
).But when I invoke
mvn package
, I get an exception:Expected behavior
No response
Actual behavior
No response
How to Reproduce?
resteasy-reactive-multipart-reproducer.zip
Output of
uname -a
orver
No response
Output of
java -version
openjdk version "11.0.11" 2021-04-20 OpenJDK Runtime Environment AdoptOpenJDK-11.0.11+9 (build 11.0.11+9) OpenJDK 64-Bit Server VM AdoptOpenJDK-11.0.11+9 (build 11.0.11+9, mixed mode)
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.1.2.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
Additional information
No response
The text was updated successfully, but these errors were encountered: