@Repeatable标识该注解可以重复,如下
@CustomAnnotation(value="123")
@CustomAnnotation(value="789")
@CustomAnnotation(value="123")
private String name;
@CustomAnnotation(value="123")
@CustomAnnotation(value="789")
public String getName(){
}
@Repeatable标识该注解可以重复,如下
@CustomAnnotation(value="123")
@CustomAnnotation(value="789")
@CustomAnnotation(value="123")
private String name;
@CustomAnnotation(value="123")
@CustomAnnotation(value="789")
public String getName(){
}