You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The usage of JsonbContextResolverProvider can cause high CPU usage because every time we need to use dto-json conversion, the underlying JSON-B implementation (such as Yasson) always scans the DTO types.
Describe the solution you'd like
Use CDI or static to prevent instantiation on every call: JsonbUtil.
Additional context
We should add simple customization capabilities to the project to allow overriding this config
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The usage of JsonbContextResolverProvider can cause high CPU usage because every time we need to use dto-json conversion, the underlying JSON-B implementation (such as Yasson) always scans the DTO types.
Describe the solution you'd like
Use CDI or static to prevent instantiation on every call: JsonbUtil.
Additional context
We should add simple customization capabilities to the project to allow overriding this config
The text was updated successfully, but these errors were encountered: