可以先参考 https://blog.csdn.net/qq_28802119/article/details/83573950 这篇文章
本文是在上篇文章的补充。
获取注解的注解:
annotationType().getAnnotations()
需要通过上述方法来实现,直接通过getAnnotations 获取不到 。
方便起见,我们可以使用 spring AnnotationUtils.findAnnotation 这个方法来获取。
属性的继承
我暂时没有找到对应的写法, spring 的写法是自定义的。