类 RepeatableContainers

java.lang.Object
cn.taketoday.core.annotation.RepeatableContainers

public abstract class RepeatableContainers extends Object
Strategy used to determine annotations that act as containers for other annotations. The standard() method provides a default strategy that respects Java's @Repeatable support and should be suitable for most situations.

The valueOf(java.lang.Class<? extends java.lang.annotation.Annotation>, java.lang.Class<? extends java.lang.annotation.Annotation>) method can be used to register relationships for annotations that do not wish to use @Repeatable.

To completely disable repeatable support use none().

从以下版本开始:
4.0
作者:
Phillip Webb, TODAY