反射可能用于的场景

动态加载 YAML 中指定的类

**# test-config.yaml
className: com.example.TestService
method: queryData
parameters:

  • type: java.lang.String
    value: "testId"
  • type: java.lang.Integer
    value: 123**
java 复制代码
public class YamlClassLoader {
    public Object loadAndExecute(String yamlPath) throws Exception {
        // 1. 读取YAML配置
        Map<String, Object> config = loadYaml(yamlPath);
        
        // 2. 动态加载类
        String className = (String) config.get("className");
        Class<?> clazz = Class.forName(className);
        
        // 3. 创建实例
        Object instance = clazz.getDeclaredConstructor().newInstance();
        
        // 4. 获取方法
        String methodName = (String) config.get("method");
        List<Map<String, String>> params = (List<Map<String, String>>) config.get("parameters");
        
        // 5. 准备参数
        Class<?>[] paramTypes = new Class<?>[params.size()];
        Object[] paramValues = new Object[params.size()];
        for (int i = 0; i < params.size(); i++) {
            Map<String, String> param = params.get(i);
            paramTypes[i] = Class.forName(param.get("type"));
            paramValues[i] = convertValue(param.get("value"), paramTypes[i]);
        }
        
        // 6. 获取并调用方法
        Method method = clazz.getMethod(methodName, paramTypes);
        return method.invoke(instance, paramValues);
    }
    
    private Object convertValue(String value, Class<?> type) {
        if (type == String.class) return value;
        if (type == Integer.class) return Integer.parseInt(value);
        // ... 其他类型转换
        return null;
    }
}

Mock 数据注入到测试对象

java 复制代码
public class MockDataInjector {
    public void injectMockData(Object testObject, Map<String, Object> mockData) 
        throws Exception {
        
        Class<?> clazz = testObject.getClass();
        
        // 遍历所有字段
        for (Field field : clazz.getDeclaredFields()) {
            // 检查是否有需要mock的注解
            if (field.isAnnotationPresent(MockData.class)) {
                field.setAccessible(true); // 允许访问私有字段
                
                // 获取mock数据
                String fieldName = field.getName();
                Object mockValue = mockData.get(fieldName);
                
                // 注入mock数据
                field.set(testObject, mockValue);
            }
        }
    }
}

// 使用示例
@Test
public class UserServiceTest {
    @MockData
    private UserDao userDao;
    
    @BeforeTest
    public void setup() {
        // 准备mock数据
        Map<String, Object> mockData = new HashMap<>();
        mockData.put("userDao", new MockUserDao());
        
        // 注入mock数据
        new MockDataInjector().injectMockData(this, mockData);
    }
}

动态调用测试方法

java 复制代码
public class DynamicTestExecutor {
    public void executeTest(String className, String methodName) throws Exception {
        // 1. 加载测试类
        Class<?> testClass = Class.forName(className);
        Object testInstance = testClass.getDeclaredConstructor().newInstance();
        
        // 2. 查找并执行@BeforeTest方法
        for (Method method : testClass.getMethods()) {
            if (method.isAnnotationPresent(BeforeTest.class)) {
                method.invoke(testInstance);
            }
        }
        
        // 3. 执行指定的测试方法
        Method testMethod = testClass.getMethod(methodName);
        if (testMethod.isAnnotationPresent(Test.class)) {
            testMethod.invoke(testInstance);
        }
    }
}

// 使用实例
@Test
public class TestRunner {
    public void runSpecificTest() {
        DynamicTestExecutor executor = new DynamicTestExecutor();
        executor.executeTest(
            "com.example.UserServiceTest",
            "testUserCreation"
        );
    }
}

完整的工具类示例

java 复制代码
public class TestReflectionUtils {
    
    // 1. 动态加载并实例化类
    public static Object createInstance(String className) throws Exception {
        Class<?> clazz = Class.forName(className);
        return clazz.getDeclaredConstructor().newInstance();
    }
    
    // 2. 设置字段值
    public static void setField(Object object, String fieldName, Object value) 
        throws Exception {
        Field field = object.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        field.set(object, value);
    }
    
    // 3. 获取字段值
    public static Object getField(Object object, String fieldName) 
        throws Exception {
        Field field = object.getClass().getDeclaredField(fieldName);
        field.setAccessible(true);
        return field.get(object);
    }
    
    // 4. 调用方法
    public static Object invokeMethod(Object object, String methodName, 
        Object... args) throws Exception {
        Class<?>[] paramTypes = new Class<?>[args.length];
        for (int i = 0; i < args.length; i++) {
            paramTypes[i] = args[i].getClass();
        }
        Method method = object.getClass().getMethod(methodName, paramTypes);
        return method.invoke(object, args);
    }
    
    // 5. 查找注解标注的方法
    public static List<Method> findAnnotatedMethods(Class<?> clazz, 
        Class<? extends Annotation> annotation) {
        List<Method> methods = new ArrayList<>();
        for (Method method : clazz.getDeclaredMethods()) {
            if (method.isAnnotationPresent(annotation)) {
                methods.add(method);
            }
        }
        return methods;
    }
}




public class TestExample {
    public static void main(String[] args) throws Exception {
        // 1. 动态加载类
        Object testInstance = TestReflectionUtils.createInstance(
            "com.example.UserServiceTest"
        );
        
        // 2. 注入mock数据
        TestReflectionUtils.setField(testInstance, "userDao", new MockUserDao());
        
        // 3. 查找并执行测试方法
        List<Method> testMethods = TestReflectionUtils.findAnnotatedMethods(
            testInstance.getClass(), 
            Test.class
        );
        
        for (Method method : testMethods) {
            TestReflectionUtils.invokeMethod(testInstance, method.getName());
        }
    }
}
相关推荐
凯瑟琳.奥古斯特12 小时前
传输层核心功能解析
开发语言·网络·职场和发展
我星期八休息12 小时前
Linux系统编程—库制作与原理
linux·运维·服务器·数据结构·人工智能·python·散列表
Cloud_Shy61812 小时前
Python 数据分析基础入门:《Excel Python:飞速搞定数据分析与处理》学习笔记系列(第十二章 用户定义函数 上篇)
python·数据分析·excel·pandas
Fuyo_111912 小时前
C++中的活字印刷术——模板·初阶
开发语言·c++·笔记
在角落发呆12 小时前
跨越网络鸿沟:传统文件传输与现代内网穿透的奇妙交响
开发语言·php
Season45013 小时前
C++之模板元编程(前置知识 constexpr)
开发语言·c++
BU摆烂会噶13 小时前
【LangGraph】House_Agent 实战(四):预定流程 —— 中断与人工干预
android·人工智能·python·langchain
AI玫瑰助手13 小时前
Python运算符:比较运算符(等于不等等于大于小于)与返回值
android·开发语言·python
GIOTTO情13 小时前
Infoseek舆情处置系统的技术实现与落地实践
python
计算机安禾13 小时前
【c++面向对象编程】第40篇:单例模式(Singleton)的多种C++实现
开发语言·c++·单例模式