I am upgrading my extension to quarkus 2.9.0 and migrating to resteasy reactive.
Some of existing builditems in resteasy classic do not exist anymore in reactive implementation. I was using ResteasyJaxrsProviderBuildItem
to record an ExceptionMapper
and a ClientRequestFilter
.
For my ExceptionMapper
, I use now an ExceptionMapperBuildItem
without any problem. But for my ClientRequestFilter
, I do not know which builditem i have to choose (there is no such a ClientRequestFilterBuildItem)
Maybe am I missing something obvious ? Thanks
ClientRequestFilter
for the REST Client are registered via @RegisterProvider
, so no build item is needed