获取所有自定义注解修饰的接口类中的接口路径

大概背景

新建了一个自定义注解,这个注解修饰在接口上,将这个注解修饰的类上@RequestMapping的路径给收集一下,用在拦截器中。

注解代码如下:

@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface TestGetPath {

    String value() default "test";
}

具体逻辑代码:

/**
 * @author ZhuRuiLin
 * @description TODO
 * @date 2022/8/3 21:52
 **/
@Component
@Slf4j
public class GetWebPath implements ApplicationContextAware {

    private  ApplicationContext applicationContext;

    List<String> pathList = null;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            this.applicationContext = applicationContext;
    }

    private void initPathList(){
        if(applicationContext == null){
            return;
        }
        if(pathList == null){
            pathList = new ArrayList<>();
        }
//        自定义注解修饰的类TestGetPath
        Map<String,Object>  testGetPathMap = applicationContext.getBeansWithAnnotation(TestGetPath.class);
//        RestController修饰的类
        Map<String,Object>  webMap = applicationContext.getBeansWithAnnotation(RestController.class);
//        testGetPathMap 是比 webMap少的, 所以遍历testGetPathMap
        for(Map.Entry<String,Object> entry : testGetPathMap.entrySet()){
            log.info("看看entry的key是{},value是{}",entry.getKey(),entry.getValue());
            if(webMap.containsKey(entry.getKey())){
                Class clazz =  entry.getValue().getClass();
                RequestMapping anno = (RequestMapping) clazz.getAnnotation(RequestMapping.class);
                String path = anno.value()[0];
                pathList.add(path);
            }
        }

    }

    public List<String> getPath(){
        if(pathList == null){
            initPathList();
        }
        return pathList;
    }
}

刚开始在公司的时候,是这么写的,但是 这一段代码

RequestMapping anno = (RequestMapping) clazz.getAnnotation(RequestMapping.class);

一直为空,一直为空;百度了半天,最后才发现clazz的获取方式要写成:

Class clazz = entry.getValue().getClass().getSuperclass()

好像是因为entry.getValue().getClass()获取的代理类,entry.getValue().getClass().getSuperclass()才是真正的实际类;

但是我回去之后再次尝试的时候发现 entry.getValue().getClass()是实际类, entry.getValue().getClass().getSuperclass()并不是要的结果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值