Java 的注解在实际项目中使用得非常的多,特别是在使用了 Spring 之后。
本文会介绍 Java 注解的语法,以及在 Spring 中使用注解的例子。
小编整理了一些java进阶学习资料和面试题,需要资料的请加JAVA高阶学习Q群:664389243 这是小编创建的java高阶学习交流群,加群一起交流学习深造。群里也有小编整理的2019年最新最全的java高阶学习资料!
注解的例子
以 Junit 中的 @Test 注解为例
@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)public@interfaceTest {longtimeout()default0L;}
可以看到 @Test 注解上有 @Target() 和 @Retention() 两个注解。
这种注解了注解的注解,称之为 元注解 。
跟声明了数据的数据,称为元数据是一种意思。
之后的注解的格式是
修饰符 @interface注解名{ 注解元素的声明1注解元素的声明2}
注解的元素声明有两种形式
typeelementName();typeelementName()defaultvalue;// 带默认值
常见的元注解
@Target 注解
@Target 注解用于限制注解能在哪些项上应用,没有加 @Target 的注解可以应用于任何项上。
在 java.lang.annotation.ElementType 类中可以看到所有 @Target 接受的项
TYPEFIELDMETHODPARAMETERCONSTRUCTORLOCAL_VARIABLEANNOTATION_TYPEPACKAGETYPE_PARAMETERTYPE_USE
@Test 注解只允许在方法上使用。
@Target(ElementType.METHOD)public@interfaceTest { ... }
如果要支持多项,则传入多个值。
@Target({ElementType.TYPE, ElementType.METHOD})public@interfaceMyAnnotation { ... }
此外元注解也是注解,也符合注解的语法,如 @Target 注解。
@Target(ElementType.ANNOTATION_TYPE) 表明 @Target 注解只能使用在注解上。
@Documented@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.ANNOTATION_TYPE)public@interfaceTarget {ElementType[]value();}
@Retention 注解
@Retention 指定注解应该保留多长时间,默认是 RetentionPolicy.CLASS 。
在 java.lang.annotation.RetentionPolicy 可看到所有的项
SOURCECLASSRUNTIME
@Test 注解会载入到虚拟机,可以通过代码获取
@Retention(RetentionPolicy.RUNTIME)public@interfaceTest { ... }
@Documented 注解
主要用于归档工具识别。被注解的元素能被 Javadoc 或类似的工具文档化。
@Inherited 注解
添加了 @Inherited 注解的注解,所注解的类的子类也将拥有这个注解
注解
@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@Inheritedpublic@interfaceMyAnnotation { ... }
父类
@MyAnnotationclassParent{ ... }
子类 Child 会把加在 Parent 上的 @MyAnnotation 继承下来
classChildextendsParent{ ... }
@Repeatable 注解
Java 1.8 引入的注解,标识注解是可重复使用的。
注解1
public@interfaceMyAnnotations{MyAnnotation[]value(); }
注解2
@Repeatable(MyAnnotations.class)public@interfaceMyAnnotation {intvalue();}
有使用 @Repeatable() 时的使用
@MyAnnotation(1)@MyAnnotation(2)@MyAnnotation(3)public class MyTest { ... }
没使用 @Repeatable() 时的使用, @MyAnnotation 去掉 @Repeatable 元注解
@MyAnnotations({@MyAnnotation(1),@MyAnnotation(2),@MyAnnotation(3)})public class MyTest { ... }
这个注解还是非常有用的,让我们的代码变得简洁不少,
Spring 的 @ComponentScan 注解也用到这个元注解。
元素的类型
支持的元素类型
8种基本数据类型( byte , short , char , int , long , float , double ,boolean )
String
Class
enum
注解类型
数组(所有上边类型的数组)
例子
枚举类
publicenumStatus{ GOOD, BAD}
注解1
@Target(ElementType.ANNOTATION_TYPE)public@interfaceMyAnnotation1 {intval();}
注解2
@Target(ElementType.TYPE)public@interfaceMyAnnotation2 { boolean boo()defaultfalse; Class cla()defaultVoid.class; Status enu()defaultStatus.GOOD; MyAnnotation1 anno()default@MyAnnotation1(val = 1); String[] arr(); }
使用时,无默认值的元素必须传值
@MyAnnotation2( cla = String.class, enu = Status.BAD, anno =@MyAnnotation1(val =2), arr = {"a","b"})public class MyTest { ... }
Java 内置的注解
@Override 注解
告诉编译器这个是个覆盖父类的方法。如果父类删除了该方法,则子类会报错。
@Deprecated 注解
表示被注解的元素已被弃用。
@SuppressWarnings 注解
告诉编译器忽略警告。
@FunctionalInterface 注解
Java 1.8 引入的注解。该注释会强制编译器 javac 检查一个接口是否符合函数接口的标准。
特别的注解
有两种比较特别的注解
标记注解 : 注解中没有任何元素,使用时直接是 @XxxAnnotation , 不需要加括号
单值注解 : 注解只有一个元素,且名字为 value ,使用时直接传值,不需要指定元素名 @XxxAnnotation(100)
利用反射获取注解
Java 的 AnnotatedElement 接口中有 getAnnotation() 等获取注解的方法。
而 Method , Field , Class , Package 等类均实现了这个接口,因此均有获取注解的能力。
例子
注解
@Retention(RetentionPolicy.RUNTIME)@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})public@interfaceMyAnno {Stringvalue(); }
被注解的元素
@MyAnno("class")publicclassMyClass{@MyAnno("feild")privateString str;@MyAnno("method")publicvoid method() { } }
获取注解
publicclassTest {publicstaticvoidmain(String[] args)throwsException { MyClass obj =newMyClass();Class clazz = obj.getClass();// 获取对象上的注解MyAnno anno = clazz.getAnnotation(MyAnno.class); System.out.println(anno.value());// 获取属性上的注解Field field = clazz.getDeclaredField("str"); anno = field.getAnnotation(MyAnno.class); System.out.println(anno.value());// 获取方法上的注解Method method = clazz.getMethod("method"); anno = method.getAnnotation(MyAnno.class); System.out.println(anno.value()); } }
在 Spring 中使用自定义注解
注解本身不会有任何的作用,需要有其他代码或工具的支持才有用。
需求
设想现有这样的需求,程序需要接收不同的命令 CMD ,
然后根据命令调用不同的处理类 Handler 。
很容易就会想到用 Map 来存储命令和处理类的映射关系。
由于项目可能是多个成员共同开发,不同成员实现各自负责的命令的处理逻辑。
因此希望开发成员只关注 Handler 的实现,不需要主动去 Map 中注册 CMD 和 Handler的映射。
最终效果
最终希望看到效果是这样的
@CmdMapping(Cmd.LOGIN)publicclassLoginHandlerimplementsICmdHandler{@Overridepublicvoidhandle(){ System.out.println("handle login request"); }}@CmdMapping(Cmd.LOGOUT)publicclassLogoutHandlerimplementsICmdHandler{@Overridepublicvoidhandle(){ System.out.println("handle logout request"); }}
开发人员增加自己的 Handler ,只需要创建新的类并注上 @CmdMapping(Cmd.Xxx) 即可。
具体做法
具体的实现是使用 Spring 和一个自定义的注解
定义 @CmdMapping 注解
@Documented@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Componentpublic@interfaceCmdMapping {intvalue(); }
@CmdMapping 中有一个 int 类型的元素 value ,用于指定 CMD 。这里做成一个单值注解。
这里还加了 Spring 的 @Component 注解,因此注解了 @CmdMapping 的类也会被Spring创建实例。
然后是 CMD 接口,存储命令。
publicinterfaceCmd{intREGISTER =1;intLOGIN =2;intLOGOUT =3;}
之后是处理类接口,现实情况接口会复杂得多,这里简化了。
publicinterfaceICmdHandler{voidhandle(); }
上边说过,注解本身是不起作用的,需要其他的支持。下边就是让注解生效的部分了。
使用时调用 handle() 方法即可。
@ComponentpublicclassHandlerDispatcherServletimplementsInitializingBean,ApplicationContextAware{privateApplicationContext context;privateMap handlers =newHashMap<>();publicvoidhandle(intcmd){ handlers.get(cmd).handle(); }publicvoidafterPropertiesSet(){ String[] beanNames =this.context.getBeanNamesForType(Object.class);for(String beanName : beanNames) {if(ScopedProxyUtils.isScopedTarget(beanName)) {continue; } Class beanType =this.context.getType(beanName);if(beanType !=null) { CmdMapping annotation = AnnotatedElementUtils.findMergedAnnotation( beanType, CmdMapping.class);if(annotation !=null) { handlers.put(annotation.value(), (ICmdHandler) context.getBean(beanType)); } } } }publicvoidsetApplicationContext(ApplicationContext applicationContext)throwsBeansException{this.context = applicationContext; }}
主要工作都是 Spring 做,这里只是将实例化后的对象 put 到 Map 中。
测试代码
@ComponentScan("pers.custom.annotation")publicclassMain{publicstaticvoidmain(String[] args) { AnnotationConfigApplicationContext context =newAnnotationConfigApplicationContext(Main.class); HandlerDispatcherServlet servlet = context.getBean(HandlerDispatcherServlet.class); servlet.handle(Cmd.REGISTER); servlet.handle(Cmd.LOGIN); servlet.handle(Cmd.LOGOUT); context.close(); }}
小编整理了一些java进阶学习资料和面试题,需要资料的请加JAVA高阶学习Q群:664389243 这是小编创建的java高阶学习交流群,加群一起交流学习深造。群里也有小编整理的2019年最新最全的java高阶学习资料!
总结
可以看到使用注解能够写出很灵活的代码,注解也特别适合做为使用框架的一种方式。
所以学会使用注解还是很有用的,毕竟这对于上手框架或实现自己的框架都是非常重要的知识。