Python 官方文档:入门教程 => 点击学习
获取包下所有类中注解的值 作用: 这个工具类主要的作用就是获取类中的注解的值。 应用场景: 做权限的时候获取@RequestMapping();的值,自动添加到数据库中。
这个工具类主要的作用就是获取类中的注解的值。
做权限的时候获取@RequestMapping();的值,自动添加到数据库中。
public static List<String> getRequestMappingValue(String packageName) {
GetAnnotationValueUtil getAnnotationValueUtil = new GetAnnotationValueUtil();
//第一个class类的集合
List<Class<?>> classes = new ArrayList<Class<?>>();
//是否循环迭代
boolean recursive = true;
//获取包的名字 并进行替换
String packageDirName = packageName.replace('.', '/');
//定义一个枚举的集合 并进行循环来处理这个目录下的文件
Enumeration<URL> dirs;
try {
//读取指定package下的所有class
dirs = Thread.currentThread().getContextClassLoader().getResources(packageDirName);
while (dirs.hasMoreElements()){
URL url = dirs.nextElement();
//得到协议的名称
String protocol = url.getProtocol();
//判断是否以文件的形式保存在服务器上
if ("file".equals(protocol)) {
//获取包的物理路径
String filePath = URLDecoder.decode(url.getFile(), "UTF-8");
//以文件的方式扫描整个包下的文件 并添加到集合中
findAndAddClassesInPackageByFile(packageName, filePath, recursive, classes);
}
}
} catch (IOException e) {
e.printStackTrace();
}
List<String> stringList = new ArrayList<String>();
for (Class<?> clazz : classes) {
//循环获取所有的类
Class<?> c = clazz;
//获取类的所有方法
Method[] methods = c.getMethods();
for (Method method : methods) {
//获取RequestMapping注解
RequestMapping annotation = method.getAnnotation(RequestMapping.class);
if (annotation != null) {
//获取注解的value值
String[] value = annotation.value();
for (String string : value) {
//放入List集合
stringList.add(string);
}
}
}
}
return stringList;
}
public static void findAndAddClassesInPackageByFile(String packageName, String packagePath, final boolean recursive, List<Class<?>> classes){
//获取此包的目录 建立一个File
File dir = new File(packagePath);
//如果不存在或者 也不是目录就直接返回
if (!dir.exists() || !dir.isDirectory()) {
return;
}
//如果存在 就获取包下的所有文件 包括目录
File[] dirfiles = dir.listFiles(new FileFilter() {
//自定义过滤规则 如果可以循环(包含子目录) 或则是以.class结尾的文件(编译好的java类文件)
public boolean accept(File file) {
return (recursive && file.isDirectory()) || (file.getName().endsWith(".class"));
}
});
//循环所有文件
for (File file : dirfiles) {
//如果是目录 则继续扫描
if (file.isDirectory()) {
findAndAddClassesInPackageByFile(packageName + "." + file.getName(),
file.getAbsolutePath(),
recursive,
classes);
}
else {
//如果是java类文件 去掉后面的.class 只留下类名
String className = file.getName().substring(0, file.getName().length() - 6);
try {
//添加到集合中去
classes.add(Thread.currentThread().getContextClassLoader().loadClass(packageName + "." + className));
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface LeiMode {
public int value() default 1;
}
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface FiledMode {
public int value() default 1;
}
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TreahMode {
public int value() default 1;
}
@LeiMode(5)
public class AnnotationDemo {
@FiledMode(10)
private int itest;
@TreahMode()
private void test(){}
}
LeiMode annotation = AnnotationDemo.class.getAnnotation(LeiMode.class);
System.out.println(annotation.value());
Field[] fields = AnnotationDemo.class.getDeclaredFields();
Field field = null;
for(Field f : fields){
if(f.getName().equals("itest")){
field = f;
break;
}
}
FiledMode annotation = field.getAnnotation(FiledMode.class);
System.out.println(annotation.value());
Field field = AnnotationDemo.class.getDeclaredField("itest");
FiledMode annotation = field.getAnnotation(FiledMode.class);
System.out.println(annotation.value());
Method[] methods = AnnotationDemo.class.getDeclaredMethods(); //可以获取私有方法和公有方法, getMethods() 获取公有方法
Method meth = null;
for(Method method : methods){
if(method.getName().equals("test")){
meth = method;
break;
}
}
Annotation annotation = meth.getAnnotations()[0];
TreahMode mode = (TreahMode) annotation;
System.out.println(mode.value());
Method method = AnnotationDemo.class.getDeclaredMethod("test", null);//可以获取私有方法和公有方法
System.out.println(method);
Annotation[] annotations = method.getAnnotations();
Annotation annotation = annotations[0];
System.out.println(annotation);
TreahMode mode = (TreahMode) annotation;
System.out.println(mode.value());
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: 如何获取包下所有类中的注解的值(java工具类)
本文链接: https://lsjlt.com/news/131816.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0