Replies: 2 comments 5 replies
-
/cc @FroMage (resteasy-reactive), @Sgitario (resteasy-reactive), @geoand (resteasy-reactive), @stuartwdouglas (resteasy-reactive) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I very much doubt we will implement this |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using NettyJaxrsServer in my testcases to instanciate mock servers for my jaxrs api's. This works great in legacy resteasy but fails with resteasy-reactive with the following stacktrace:
Caused by: java.lang.UnsupportedOperationException: Pending implementation at org.jboss.resteasy.reactive.common.jaxrs.RuntimeDelegateImpl.createConfigurationBuilder(RuntimeDelegateImpl.java:125) at jakarta.ws.rs.SeBootstrap$Configuration.builder(SeBootstrap.java:494) at org.jboss.resteasy.plugins.server.netty.NettyJaxrsServer.start(NettyJaxrsServer.java:85) at com.limetransit.fileencoder.worker.MockDispatcherResource.start(MockDispatcherResource.java:32) at io.quarkus.test.common.TestResourceManager$TestResourceEntryRunnable.run(TestResourceManager.java:492)
The reason can be found in https://github.com/quarkusio/quarkus/blob/main/independent-projects/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/common/jaxrs/RuntimeDelegateImpl.java:
public SeBootstrap.Configuration.Builder createConfigurationBuilder() { // RR does not implement currently implement the bootstrapping API throw new UnsupportedOperationException("Pending implementation"); }
Is there a roadmap for implementing this functionality?
Beta Was this translation helpful? Give feedback.
All reactions