What are Java Annotations?
Annotations is a new feature from Java 5. Annotations are a kind of comment or meta data you can insert in your Java code. These annotations can then be processed at compile time by pre-compiler tools, or at runtime via Java Reflection. The annotation can be attached to Classes, Methods,Parameters,Fields etc.How to create custom Annotation?
To create an annotation we use the
interface
keyword and add an @
symbol infront of it. The @
symbol will tell the compiler that it doing some business with an annotation.
@Retention
(RetentionPolicy.RUNTIME)
public
@interface
MyAnnotation {
String value();
}
The
@
in front of the interface
marks it as an annotation. Once you have defined the annotation you can use it in your code.Here is an example of class annotation:@MyAnnotation(value="Class Annotation") public class MyClass { }
The two directives in the annotation definition,
@Retention(RetentionPolicy.RUNTIME)
and @Target(ElementType.TYPE)
, specifies how the annotation is to be used. @Retention(RetentionPolicy.RUNTIME)
means that the annotation can be accessed via reflection at runtime. If you do not set this directive, the annotation will not be preserved at runtime, and thus not available via reflection.@Target(ElementType.TYPE)
means that the annotation can only be used ontop of types (classes and interfaces typically). You can also specify METHOD
or FIELD
, or you can leave the target out alltogether so the annotation can be used for both classes, methods and fields.
Class Annotations
You can access the annotations of a class, method or field at runtime. Here is an example that accesses the class annotations:Class aClass = MyClass.class; Annotation[] annotations = aClass.getAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); } }You can also access a specific class annotation like this:
Class aClass = MyClass.class; Annotation annotation = aClass.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); }
Method Annotations
Here is an example of a method with annotations:public class MyClass { @MyAnnotation(value = "Method Annotation") public void doSomething(){} }
You can access method annotations like this:
Method method = ... //obtain method object Annotation[] annotations = method.getDeclaredAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); } }
You can also access a specific method annotation like this:
Method method = ... // obtain method object Annotation annotation = method.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); }
Parameter Annotations
It is possible to add annotations to method parameter declarations too. Here is how that looks:public class MyClass { public static void doSomethingElse( @MyAnnotation(value="Parameter Annotation") String parameter){ } }
You can access parameter annotations from the
Method
object like this:Method method = ... //obtain method object Annotation[][] parameterAnnotations = method.getParameterAnnotations(); Class[] parameterTypes = method.getParameterTypes(); int i=0; for(Annotation[] annotations : parameterAnnotations){ Class parameterType = parameterTypes[i++]; for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("param: " + parameterType.getName()); System.out.println("value: " + myAnnotation.value()); } } }
Notice how the
Method.getParameterAnnotations()
method returns a two-dimensional Annotation
array, containing an array of annotations for each method parameter. Field Annotations
Here is an example of a field with annotations:public class MyClass { @MyAnnotation(value = "Field Annotation") public String myField = null; }
You can access field annotations like this:
Field field = ... //obtain field object Annotation[] annotations = field.getDeclaredAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); } }
You can also access a specific field annotation like this:
Field field = ... // obtain method object Annotation annotation = field.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); }
The whole tutorial is on the github:
https://github.com/abdulwaheed18/Annotation-Tutorial