-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fury does not work with quarkus-rest in native mode #32
Comments
@gastaldi @geoand This is the reproducer https://github.com/zhfeng/fury_reactive_rest_reproducer
It will fail with
There are two test methods for testing |
Thanks, I'll check next week |
@zhfeng one way to fix this would be for |
Thanks @geoand - Is there any difference between these interfaces? |
The difference in this specific case is that Quarkus doesn't have to perform reflection on the JAX-RS / Jakarta REST method just to serialize/deseriaze |
… ServerMessageBodyReader and SeverMessageBodyWriter
When we have a integration of fury with
quarkus-rest
to do (de)serialize by supportingapplication/fury
media type. It have to add a@RegisterForReflection
in the JAX-RS resource, otherwise it faill to find such method like the below one in the native mode.BTW, it works with
quarkus-resteasy
.The text was updated successfully, but these errors were encountered: