


Detailed examples of Java custom annotations and reading annotations using reflection
The following editor will bring you an example of Java custom annotations and using reflection to read annotations. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.
1. Custom annotations
Meta Annotation:
@interface annotation: Define the annotation interface
@Target annotation: Used to constrain the usage scope of the described annotation. When the described annotation exceeds the usage scope, the compilation fails. For example: ElementType.METHOD,ElementType.TYPE;
@Retention annotation: used to constrain the scope of the defined annotation. There are three scopes:
1. RetentionPolicy.SOURCE: The scope is the source code, it acts on Java files, and the annotation is removed when javac is executed.
2. RetentionPolicy.CLASS: The scope is binary code, which exists in the class file. This annotation is removed when Java is executed.
3. RetentionPolicy.RUNTIME: The scope is runtime, that is, we can obtain the annotation dynamically.
@Documented: used to specify this comment to be displayed when javadoc generates API documentation.
@Inherited: is used to specify that the described annotation can be inherited by subclasses of the class it describes. The default is that it cannot be inherited by its subclasses.
Custom annotation interface:
package com.java.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.METHOD,ElementType.TYPE}) @Inherited @Documented @Retention(RetentionPolicy.RUNTIME) public @interface Annotation_my { String name() default "张三";//defalt 表示默认值 String say() default "hello world"; int age() default 21; }
Next we define an interface:
package com.java.annotation; @Annotation_my //使用我们刚才定义的注解 public interface Person { @Annotation_my public void name(); @Annotation_my public void say(); @Annotation_my public void age(); }
After the interface is defined, we can write the implementation class of the interface (the interface cannot be instantiated)
package com.java.annotation; @Annotation_my @SuppressWarnings("unused") public class Student implements Person { private String name; @Override @Annotation_my(name="流氓公子") //赋值给name 默认的为张三 //在定义注解时没有给定默认值时,在此处必须name赋初值 public void name() { } @Override @Annotation_my(say=" hello world !") public void say() { } @Override @Annotation_my(age=20) public void age() { } }
Then we Just write a test class to test our annotations
package com.java.annotation; import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.lang.reflect.Method; public class Text { Annotation[] annotation = null; public static void main(String[] args) throws ClassNotFoundException { new Text().getAnnotation(); } public void getAnnotation() throws ClassNotFoundException{ Class<?> stu = Class.forName("com.java.annotation.Student");//静态加载类 boolean isEmpty = stu.isAnnotationPresent(com.java.annotation.Annotation_my.class);//判断stu是不是使用了我们刚才定义的注解接口if(isEmpty){ annotation = stu.getAnnotations();//获取注解接口中的 for(Annotation a:annotation){ Annotation_my my = (Annotation_my)a;//强制转换成Annotation_my类型 System.out.println(stu+":\n"+my.name()+" say: "+my.say()+" my age: "+my.age()); } } Method[] method = stu.getMethods();// System.out.println("Method"); for(Method m:method){ boolean ismEmpty = m.isAnnotationPresent(com.java.annotation.Annotation_my.class); if(ismEmpty){ Annotation[] aa = m.getAnnotations(); for(Annotation a:aa){ Annotation_my an = (Annotation_my)a; System.out.println(m+":\n"+an.name()+" say: "+an.say()+" my age: "+an.age()); } } } //get Fields by force System.out.println("get Fileds by force !"); Field[] field = stu.getDeclaredFields(); for(Field f:field){ f.setAccessible(true); System.out.println(f.getName()); } System.out.println("get methods in interfaces !"); Class<?> interfaces[] = stu.getInterfaces(); for(Class<?> c:interfaces){ Method[] imethod = c.getMethods(); for(Method m:imethod){ System.out.println(m.getName()); } } } }
The above is the detailed content of Detailed examples of Java custom annotations and reading annotations using reflection. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.
