-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Slightly optimize ObjectMapper producer #45445
Conversation
This leads to slightly better generated code (as the generated _Bean does not need to do reflection on the java member)
@mkouba is it expected |
I'm not a fan of this kind of optimizations. It brings very little value and may cease to apply very quickly. For example, I've mentioned in https://quarkusio.zulipchat.com/#narrow/channel/187038-dev/topic/arc.20startup.20reflection that Also it's not possible to say if |
And I can switch back when that lands :) |
Status for workflow
|
Before this PR, the constructor of the generated _Bean class was:
and now it is: