Le contenu de cet article concerne la définition et l'utilisation des annotations Java (exemples de code). Il a une certaine valeur de référence. Les amis dans le besoin peuvent s'y référer.
Les annotations Java sont beaucoup utilisées dans les projets réels, surtout après avoir utilisé Spring.
Cet article présentera la syntaxe des annotations Java et des exemples d'utilisation des annotations dans Spring.Syntaxe d'annotation
Exemple d'annotation
Prenons l'annotation @Test dans Junit comme exemple
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Test { long timeout() default 0L; }
Vous pouvez voir que l'annotation @Test
a @Target()
et @Retention()
deux annotations.
Ce type d'annotation qui annote les annotations est appelé méta-annotation.
Cela a la même signification que les données qui déclarent les données, appelées métadonnées. Le format des annotations après
est
修饰符 @interface 注解名 { 注解元素的声明1 注解元素的声明2 }
La déclaration de l'élément annoté a deux formes
type elementName(); type elementName() default value; // 带默认值
@Target
Annotation@Target
L'annotation est utilisée pour limiter les éléments auxquels l'annotation peut être appliquée sans que @Target
puisse être appliquée à n'importe quel élément.
Vous pouvez voir tous les java.lang.annotation.ElementType
éléments acceptés dans la @Target
classe
TYPE
Utilisez
FIELD
Utilisez
METHOD
sur [Champs, constantes d'énumération] Utilisez
Utilisez PARAMETER
sur [Paramètre] Utilisez CONSTRUCTOR
LOCAL_VARIABLE
ANNOTATION_TYPE
PACKAGE
TYPE_PARAMETER
TYPE_USE
@Test
@Target(ElementType.METHOD) public @interface Test { ... }
@Target({ElementType.TYPE, ElementType.METHOD}) public @interface MyAnnotation { ... }
@Target
indique que l'annotation
ne peut être utilisée que sur les annotations. @Target(ElementType.ANNOTATION_TYPE)
@Target
@Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @interface Target { ElementType[] value(); }
@Retention
. @Retention
Tous les éléments peuvent être vus dans RetentionPolicy.CLASS
java.lang.annotation.RetentionPolicy
SOURCE
CLASS
RUNTIME
@Test
@Retention(RetentionPolicy.RUNTIME) public @interface Test { ... }
@Documented
sont principalement utilisées pour l'archivage identification des outils. Les éléments annotés peuvent être documentés à l'aide de Javadoc
@Inherited
Avec l'annotation de @Inherited
Annotation
Classe parent
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Inherited public @interface MyAnnotation { ... }
@MyAnnotation class Parent { ... }
ajoutées aux Child
Parent
@MyAnnotation
class Child extends Parent { ... }
@Repeatable
Annotations introduites dans Java 1.8 marque les annotations comme réutilisables. Note 1
Note 2public @interface MyAnnotations { MyAnnotation[] value(); }
@Repeatable(MyAnnotations.class) public @interface MyAnnotation { int value(); }
@Repeatable()
@MyAnnotation(1) @MyAnnotation(2) @MyAnnotation(3) public class MyTest { ... }
supprimez la méta annotation @Repeatable()
@MyAnnotation
@Repeatable
@MyAnnotations({ @MyAnnotation(1), @MyAnnotation(2), @MyAnnotation(3)}) public class MyTest { ... }
Types d'élémentsSpring
@ComponentScan
Types d'éléments pris en charge
, byte
, short
, char
, int
) long
float
double
boolean
String
Class
enum
Type d'annotation
Tableau (tous les tableaux des types ci-dessus)
Exemple
public enum Status { GOOD, BAD }
@Target(ElementType.ANNOTATION_TYPE) public @interface MyAnnotation1 { int val(); }
@Target(ElementType.TYPE) public @interface MyAnnotation2 { boolean boo() default false; Class<?> cla() default Void.class; Status enu() default Status.GOOD; MyAnnotation1 anno() default @MyAnnotation1(val = 1); String[] arr(); }
Annotations intégrées
@MyAnnotation2( cla = String.class, enu = Status.BAD, anno = @MyAnnotation1(val = 2), arr = {"a", "b"}) public class MyTest { ... }
Java
@Override
@Deprecated
@SuppressWarnings
@FunctionalInterface
有两种比较特别的注解
标记注解 : 注解中没有任何元素,使用时直接是 @XxxAnnotation
, 不需要加括号
单值注解 : 注解只有一个元素,且名字为value
,使用时直接传值,不需要指定元素名@XxxAnnotation(100)
Java
的AnnotatedElement
接口中有getAnnotation()
等获取注解的方法。
而Method
,Field
,Class
,Package
等类均实现了这个接口,因此均有获取注解的能力。
@Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD}) public @interface MyAnno { String value(); }
@MyAnno("class") public class MyClass { @MyAnno("feild") private String str; @MyAnno("method") public void method() { } }
public class Test { public static void main(String[] args) throws Exception { MyClass obj = new MyClass(); 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) public class LoginHandler implements ICmdHandler { @Override public void handle() { System.out.println("handle login request"); } } @CmdMapping(Cmd.LOGOUT) public class LogoutHandler implements ICmdHandler { @Override public void handle() { System.out.println("handle logout request"); } }
开发人员增加自己的Handler
,只需要创建新的类并注上@CmdMapping(Cmd.Xxx)
即可。
具体的实现是使用Spring
和一个自定义的注解
定义@CmdMapping
注解
@Documented @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Component public @interface CmdMapping { int value(); }
@CmdMapping
中有一个int
类型的元素value
,用于指定CMD
。这里做成一个单值注解。
这里还加了Spring
的@Component
注解,因此注解了@CmdMapping
的类也会被Spring创建实例。
然后是CMD
接口,存储命令。
public interface Cmd { int REGISTER = 1; int LOGIN = 2; int LOGOUT = 3; }
之后是处理类接口,现实情况接口会复杂得多,这里简化了。
public interface ICmdHandler { void handle(); }
上边说过,注解本身是不起作用的,需要其他的支持。下边就是让注解生效的部分了。
使用时调用handle()
方法即可。
@Component public class HandlerDispatcherServlet implements InitializingBean, ApplicationContextAware { private ApplicationContext context; private Map<Integer, ICmdHandler> handlers = new HashMap<>(); public void handle(int cmd) { handlers.get(cmd).handle(); } public void afterPropertiesSet() { 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)); } } } } public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { this.context = applicationContext; } }
主要工作都是Spring
做,这里只是将实例化后的对象put
到Map
中。
测试代码
@ComponentScan("pers.custom.annotation") public class Main { public static void main(String[] args) { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Main.class); HandlerDispatcherServlet servlet = context.getBean(HandlerDispatcherServlet.class); servlet.handle(Cmd.REGISTER); servlet.handle(Cmd.LOGIN); servlet.handle(Cmd.LOGOUT); context.close(); } }
> 完整项目
可以看到使用注解能够写出很灵活的代码,注解也特别适合做为使用框架的一种方式。
所以学会使用注解还是很有用的,毕竟这对于上手框架或实现自己的框架都是非常重要的知识。
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!