springboot ReflectionUtils动态调用方法
时间: 2023-07-11 15:52:39 浏览: 94
springboot mybatis 动态调用oracle存储过程,通过存储过程名称,就能动态调用存储过程、java动态调用or
5星 · 资源好评率100%
在SpringBoot中,我们可以使用ReflectionUtils来动态调用Bean的方法。下面是一个示例代码:
```java
@Service
public class UserService {
public void sayHello(String name) {
System.out.println("Hello, " + name);
}
}
@RestController
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/hello/{name}")
public String hello(@PathVariable String name) {
Method method = ReflectionUtils.findMethod(UserService.class, "sayHello", String.class);
ReflectionUtils.invokeMethod(method, userService, name);
return "Hello";
}
}
```
在上述代码中,我们首先定义了一个UserService类,其中有一个sayHello方法,用于输出"Hello, " + name。然后,我们定义了一个UserController类,其中有一个/hello/{name}的GET请求,用于动态调用UserService的sayHello方法并传入参数name。在方法内部,我们使用ReflectionUtils的findMethod方法获取了UserService类中名为"sayHello"的方法对象,并使用invokeMethod方法调用了该方法,并传入了参数name。最后返回一个"Hello"字符串。当我们访问"/hello/{name}"时,就会输出"Hello, {name}"。这就是使用ReflectionUtils动态调用Bean方法的一个示例。
阅读全文