Skip to main content

java元注解@interface

·60 words·1 min
WFUing
Author
WFUing
A graduate who loves coding.
Table of Contents

jdk1.5
#

jdk1.5起开始提供了4个元注解,用来定义自定义注解的注解,它们分别是:

@Target
#

指定注解使用的目标范围(类、方法、字段等),其参考值见类的定义:java.lang.annotation.ElementType

@Documented
#

指定被标注的注解会包含在javadoc中。

@Retention
#

指定注解的生命周期(源码、class文件、运行时),其参考值见类的定义:java.lang.annotation.RetentionPolicy

@Inherited
#

指定子类可以继承父类的注解,只能是类上的注解,方法和字段的注解不能继承。即如果父类上的注解是 @Inherited 修饰的就能被子类继承。

jdk1.8
#

jdk1.8又提供了以下两个元注解

@Native
#

指定字段是一个常量,其值引用native code。

@Repeatable
#

注解上可以使用重复注解,即可以在一个地方可以重复使用同一个注解,像 spring 中的包扫描注解就使用了这个。

@Retention (RetentionPolicy.RUNTIME)
@Target (ElementType.TYPE)
@Documented
@Repeatable(ComponentScans.class)
public @interface ComponentScan {

}


@Retention (RetentionPolicy.RUNTIME)
@Target (ElementType.TYPE)
@Documented
public @interface ComponentScans {

}

所有元注解定义在 java.lang.annotation 包下面

其中 Annotation 是注解的基本接口,所有的注解都继承这个接口。

看下 @Autowired 注解的实现

其实就是继承了Annotation接口。