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
The core framework allows the use of @AliasFor which creates a JDK proxy behind the scenes. Registering a reflection hint for the attributes of the annotation is not enough for this to be used at runtime in a native image.
To ease the registration, we'll add a utility that takes care of this logic.
The text was updated successfully, but these errors were encountered:
This commit improves registerAnnotation to also registers the meta
annotation sources, if any. Without them, the annotation could not
be fully resolved.
See gh-28497
The core framework allows the use of
@AliasFor
which creates a JDK proxy behind the scenes. Registering a reflection hint for the attributes of the annotation is not enough for this to be used at runtime in a native image.To ease the registration, we'll add a utility that takes care of this logic.
The text was updated successfully, but these errors were encountered: