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
Several Security components use SecurityAnnotationScanners to look for annotations and apply Security's expression template support and enforce its uniqueness constraints.
Given that this is used by a number of method interceptors and AOT hints, it would be nice if the found merged annotations were cached. Indeed, the JavaDoc encourages this:
/** * Since the process of synthesizing an annotation can be expensive, it's recommended to * cache the synthesized annotation to prevent multiple computations. */
The text was updated successfully, but these errors were encountered:
Several Security components use
SecurityAnnotationScanners
to look for annotations and apply Security's expression template support and enforce its uniqueness constraints.Given that this is used by a number of method interceptors and AOT hints, it would be nice if the found merged annotations were cached. Indeed, the JavaDoc encourages this:
The text was updated successfully, but these errors were encountered: