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
public @interface CacheInvalidate {
booleanall() defaultfalse;
}
Used without values, like @CacheInvalidate.
When calling AnnotationMetadata::getRequiredValue with "all" and Boolean.class, it throws an exception because there are no default values in the annotation metadata.
The text was updated successfully, but these errors were encountered:
The previous code ended up using reflection hence why it was removed since the approach wouldn't work on GraalVM. I have updated the cache plugin code to note use this method anymore.
Given an annotation like:
Used without values, like
@CacheInvalidate
.When calling
AnnotationMetadata::getRequiredValue
with"all"
andBoolean.class
, it throws an exception because there are no default values in the annotation metadata.The text was updated successfully, but these errors were encountered: