自定义注解及使用
定义一个自定义注解
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface SelfAnnotation {
String value() default "";
}
定义一个类使用自定义注解
public class TestAnno {
@SelfAnnotation(value = "hello world")
public void sayHello() {
}
}
简单解析自定义注解
//通过反射创建对象 需要类的全路径
Class<?> aClass = Class.forName("com.zhuoyue.TestAnno");
//aClass.getAnnotation()获取类上的注解
//获取所有方法的注解
Arrays.stream(aClass.getDeclaredMethods()).forEach(method -> {
SelfAnnotation annotation = method.getAnnotation(SelfAnnotation.class);
System.out.println(annotation.value());
});
项目中解析自定义注解(动态从/target中获取类名的全路径)
@Test
public void test2() throws Exception {
//拼接资源路径
String pattern = ResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX +
ClassUtils.convertClassNameToResourcePath("com.zhuoyue.test") + "/**/*.class";
//创建一个一个资源路径解析器
ResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
//创建一个源数据读取工厂
MetadataReaderFactory readerfactory = new CachingMetadataReaderFactory(resourcePatternResolver);
//遍历资源解析器的所有资源
Arrays.stream(resourcePatternResolver.getResources(pattern)).forEach(resource -> {
//用于读取类信息
MetadataReader reader = null;
try {
//通过源数据读取工厂创建一个reader对象
reader = readerfactory.getMetadataReader(resource);
//通过reader流读取对应资源类名(全路径)
String className = reader.getClassMetadata().getClassName();
//通过反射创建对象
Class<?> aClass = Class.forName(className);
//aClass.getAnnotation()获取类上的注解
//获取所有方法的注解
Arrays.stream(aClass.getDeclaredMethods()).forEach(method -> {
SelfAnnotation annotation = method.getAnnotation(SelfAnnotation.class);
System.out.println(annotation.value());
});
} catch (Exception e) {
throw new RuntimeException(e);
}
});
}
标签:aClass,自定义,reader,SelfAnnotation,使用,注解,annotation
From: https://www.cnblogs.com/WangJingjun/p/16870125.html