-
Notifications
You must be signed in to change notification settings - Fork 36
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
Add RESTEasy Reactive JAX-RS scenario #178
Conversation
0eda225
to
13019ca
Compare
@jsmrcka there are failures in CI, please check and fix
Is this known / documented limitation? If not, it should be mentioned in the upstream resteasy-reactive guide. |
13019ca
to
01d894d
Compare
@jsmrcka can you squash the commits pls |
808a13a
to
c2eccd7
Compare
c2eccd7
to
9f03526
Compare
http/jaxrs-reactive/src/test/java/io/quarkus/ts/security/core/BaseQuarkusBundleIT.java
Outdated
Show resolved
Hide resolved
7d0a2c6
to
7740fa4
Compare
run tests |
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`.
7740fa4
to
ed5916e
Compare
run tests |
The JVM failure is caused by a port conflict. Approving |
Add
http/jaxrs-reactive
, which is a RESTEasy reactive equivalent ofhttp/jaxrs
.Notable differences and limitations:
image
andoctet-stream
werechanged from
InputStream
toFile
-InputStream
is not supportedby
resteasy-reactive
.