• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Java扫描指定包下所有添加了自定义注解的方法信息

武飞扬头像
W如Q扬
帮助1

自定义注解

@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Req {
	String desc() default "";
}

扫描并输出所有包含上面自定义注解的方法

@Componet
public class AnnotationUtil{
	@Resource
	private ResourceLoader resourceLoader;
	/**
	 * 获取指定包下所有添加了自定义注解的方法信息
	 * @param classPath 包名
	 * @param annotation 注解类名
	 * @return Map<方法名,map<注解属性,值>>
	 * /
	public <T> Map<>String, Map<String, Object>> getAllAnnotatedMethods(String classPath, Classs<T> annotation){
	Map<String, Map<String, Object>> map = new HashMap<>();
	ResourcePatternResolver resolver = ResourcePatternUtils.getResourcePatternResolver(resourceLoader);
	MetadataReaderFactory metaReader = new CachingMetadataReaderFactory(resourceLoader);
	Resource[] resources = resolver.getResources(classPath);
	for(org.springframework.core.io.Resource r: resources){
		MetadataReader reader = metaReader.getMetadataReader(r);
		//逐个解析
		map = resolveClass(reader, map, annotation);
	}
	return map;
}

private <T> Map<String, Map<String, Object>> resolveClass(MetadataReader reader, Map<String, Map<String, Object>> map, Class<T> annotation){
	String annotationCanonicalName = annotation.getCanonicalName();
	//获取注解元数据
	AnnotationMetadata annotationMetadata = reader.getAnnotationMetadata();
	//获取类名
	String fullClassName = annotationMetadata.getClassName();
	String className = StringUtils.substring(fullClassName, fullClassName.lastIndexOf(".")   1, fullClassName.length());
	//获取当前类中添加自定义注解的方法
	Set<MethodMetadata> annotatedMethods = annotationMetadata.getAnnotatedMethods(annotationCanonicalName);
	for(MethodMetadata annotatedMethod: annotatedMethods){
		//获取方法名	
		String methodName = annotatedMethod.getMethodName();
		//获取当前方法中要扫描注解的属性
		Map<String, Object> targetAttr = annotatedMethod.getAnnotaionAttributes(annotationCanonicalName);
		map.put(className   "-"   methodName, targetAttr);
	}
	return map;
}
学新通

调用AnnotationUtil

String classpath = "classpath*:com/czg/**/*.class";
Map<String, Map<String, Object>> annotatedMethods = annotationUtil.getAllAnnotatedMathods(classpath, Req.class);

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgkikaj
系列文章
更多 icon
同类精品
更多 icon
继续加载