I'm using Quarkus 2.8.2. So far I have been using the quarkus-resteasy dependencies in my project. The release notes for 2.8 tell me I should switch to quarkus-resteasy-reactive and it's a 1:1 replacment and no changes are necessary. However, after doing that my unit tests won't work any more due to
17:13:55.117 [executor-thread-0] ERROR io.quarkus.vertx.http.runtime.QuarkusErrorHandler - HTTP Request to /accounts failed, error id: 3cdf0e30-713d-4f0f-aed4-624d34a8c074-1
org.jboss.resteasy.spi.LoggableFailure: RESTEASY003880: Unable to find contextual data of type: javax.ws.rs.core.UriInfo
at org.jboss.resteasy.core.ContextParameterInjector$GenericDelegatingProxy.invoke(ContextParameterInjector.java:155) ~[resteasy-core-4.7.5.Final.jar:4.7.5.Final]
at jdk.proxy4.$Proxy121.getBaseUri(Unknown Source) ~[?:?]
at xxx.Util.getRootUri(Util.java:282) ~[utility-2.0.0-LOCAL.jar:?]
at xxx.Util.getBaseUri(Util.java:256) ~[utility-2.0.0-LOCAL.jar:?]
at xxx.providers.ASGenericJSONSerializer.getWriterAttributes(ASGenericJSONSerializer.java:58) ~[quarkus:/:?]
at xxx.providers.json.GenericJSONSerializer.writeToStream(GenericJSONSerializer.java:132) ~[quarkus:/:?]
at xxx.providers.json.GenericJSONSerializer.writeTo(GenericJSONSerializer.java:116) ~[quarkus:/:?]
at org.jboss.resteasy.reactive.server.core.ServerSerialisers.invokeWriter(ServerSerialisers.java:220) ~[resteasy-reactive-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.resteasy.reactive.server.core.ServerSerialisers.invokeWriter(ServerSerialisers.java:178) ~[resteasy-reactive-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.resteasy.reactive.server.core.serialization.DynamicEntityWriter.write(DynamicEntityWriter.java:102) ~[resteasy-reactive-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.resteasy.reactive.server.handlers.ResponseWriterHandler.handle(ResponseWriterHandler.java:31) ~[resteasy-reactive-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.resteasy.reactive.server.handlers.ResponseWriterHandler.handle(ResponseWriterHandler.java:15) ~[resteasy-reactive-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.resteasy.reactive.common.core.AbstractResteasyReactiveContext.run(AbstractResteasyReactiveContext.java:141) [resteasy-reactive-common-2.8.2.Final.jar:2.8.2.Final]
at io.quarkus.vertx.core.runtime.VertxCoreRecorder$14.runWith(VertxCoreRecorder.java:548) [quarkus-vertx-2.8.2.Final.jar:2.8.2.Final]
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2449) [jboss-threads-3.4.2.Final.jar:3.4.2.Final]
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1478) [jboss-threads-3.4.2.Final.jar:3.4.2.Final]
at org.jboss.threads.DelegatingRunnable.run(DelegatingRunnable.java:29) [jboss-threads-3.4.2.Final.jar:3.4.2.Final]
at org.jboss.threads.ThreadLocalResettingRunnable.run(ThreadLocalResettingRunnable.java:29) [jboss-threads-3.4.2.Final.jar:3.4.2.Final]
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) [netty-common-4.1.74.Final.jar:4.1.74.Final]
at java.lang.Thread.run(Thread.java:833) [?:?]
The culprit is
@Context
private UriInfo m_uriInfo;
in a JAX-RS @Provider
(a MessageBodyWriter
). The variable contains a proxy object but when I try to access the base URI the above exception is thrown. Note that I'm not using any of the reactive functionality explicitly.
Any hints where the problem is? Looks like a bug to me since it has worked before.