ToB企服应用市场:ToB评测及商务社交产业平台

标题: 别再重复造反射轮子了,Spring 中的 ReflectionUtils 工具类,应有尽有! [打印本页]

作者: 莱莱    时间: 2024-2-18 08:57
标题: 别再重复造反射轮子了,Spring 中的 ReflectionUtils 工具类,应有尽有!
作者:策马踏清风
链接:https://www.jianshu.com/p/756778f5dc87
ReflectionUtils是spring针对反射提供的工具类。
handleReflectionException异常处理

推荐一个开源免费的 Spring Boot 实战项目:
https://github.com/javastacks/spring-boot-best-practice
源码:
  1. public static void handleReflectionException(Exception ex) {
  2.     if (ex instanceof NoSuchMethodException) {
  3.         throw new IllegalStateException("Method not found: " + ex.getMessage());
  4.     }
  5.     if (ex instanceof IllegalAccessException) {
  6.         throw new IllegalStateException("Could not access method: " + ex.getMessage());
  7.     }
  8.     if (ex instanceof InvocationTargetException) {
  9.         handleInvocationTargetException((InvocationTargetException) ex);
  10.     }
  11.     if (ex instanceof RuntimeException) {
  12.         throw (RuntimeException) ex;
  13.     }
  14.     throw new UndeclaredThrowableException(ex);
  15. }
复制代码
主要是将反射中的异常分成几个部分,规范化输出
findField查找字段

查找指定类的指定名称和指定类型的方法
  1. public static Field findField(Class<?> clazz, String name, Class<?> type) {
  2.     Class<?> searchType = clazz;
  3.     while (Object.class != searchType && searchType != null) {
  4.         Field[] fields = getDeclaredFields(searchType);
  5.         for (Field field : fields) {
  6.             if ((name == null || name.equals(field.getName())) &&
  7.                     (type == null || type.equals(field.getType()))) {
  8.                 return field;
  9.             }
  10.         }
  11.         searchType = searchType.getSuperclass();
  12.     }
  13.     return null;
  14. }
复制代码
获取所有的方法,然后循环遍历,知道找到满足条件的返回
其中getDeclaredFields(searchType)方法使用ConcurrentReferenceHashMap将Field缓存,并优先从缓存中取。
设置字段setField

查找方法findMethod

调用方法invokeMethod

判断类

操作

  1. public interface MethodCallback {
  2.     void doWith(Method method) throws IllegalArgumentException, IllegalAccessException;
  3. }
复制代码
  1. public interface MethodFilter {
  2.     boolean matches(Method method);
  3. }
复制代码
近期热文推荐:
1.1,000+ 道 Java面试题及答案整理(2022最新版)
2.劲爆!Java 协程要来了。。。
3.Spring Boot 2.x 教程,太全了!
4.别再写满屏的爆爆爆炸类了,试试装饰器模式,这才是优雅的方式!!
5.《Java开发手册(嵩山版)》最新发布,速速下载!
觉得不错,别忘了随手点赞+转发哦!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4