大概背景
新建了一个自定义注解,这个注解修饰在接口上,将这个注解修饰的类上@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()并不是要的结果。