-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Unable to use Jackson AfterBurner or BlackBird modules #11253
Comments
You might have to disable the bean introspection module |
if you are using the bean introspection module then afterburner and/or blackbird will provide zero benefit since the bean introspection module is already eliminating reflection. All that will be achieved in moving the byte code generation from compile time to runtime. That said as per @yawkat if you want to use these modules for some unknown reason then you have to disable the bean introspection module |
@yawkat the same issue occurs if I disable the bean introspection module. @graemerocher we have our own Jackson mapper that we use in a bunch of places (JSONB support, Kafka, ION support, ...) I'm not sure we can use the bean instrospection module for that with the same performance advantage. Would it mandate to have all classes annotation with |
then it seems to be a Jackson bug |
Expected Behavior
We can use either Jackson AfterBurner or BalckBird modules.
Actual Behaviour
Adding either AfterBurner or BlackBird module in the classpath will make our Micronaut application crashing with
Steps To Reproduce
No response
Environment Information
Example Application
No response
Version
4.6.3
The text was updated successfully, but these errors were encountered: