MethodIntrospector 你不知道的自省设计
"MethodIntrospector" 这个名字由两部分组成:"Method" 和 "Introspector"。
- Method:这个词来源于英语,指的是方法或函数。在编程语境中,它特指某种编程语言中定义行为的代码块,可以接收参数并执行特定的操作。
- Introspector:这个词来源于英语 "introspect",意味着内省或自我检查。在计算机科学中,"introspector" 通常指的是一个能够检查和分析对象内部状态的工具或机制。
将这两部分组合起来,"MethodIntrospector" 可以理解为一个专门用于检查(内省)方法的内部信息的工具。MethodIntrospector
类正是用于提供对方法的注解、参数等信息的检查和分析功能。
这个名称反映了 MethodIntrospector
的设计理念,即提供一个机制来观察和理解方法定义及其元数据,以便在Spring框架的上下文中进行适当的处理。例如,它可以用于自动检测方法上的特定注解,从而触发特定的框架行为,如方法参数的绑定、方法执行的拦截等。
MethodIntrospector 设计结构
根据提供的方法注解、参数等信息的检查和分析,寻找对应类匹配的方法。
MethodIntrospector
用于检查Java类和方法的注解和参数的实用工具类。它通常用于基于注解的配置,例如在Spring MVC或Spring WebFlux中自动检测处理业务方法。
业务场景:
假设你正在开发一个RESTful API,你想要利用Spring的依赖注入功能来简化你的代码。MethodIntrospector
可以帮助你自动检测和处理方法参数,例如自动解析请求体、请求头、查询参数等。
关键处理代码:
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.method.support.HandlerMethod;
import java.lang.reflect.Method;
public class MyService {
public void someBusinessMethod(@RequestBody SomeRequestType request) {
// 业务逻辑处理
}
}
public class MyController {
@RequestMapping("/business")
public String handleRequest(@ModelAttribute SomeModelType model) {
// 处理逻辑
return "viewName";
}
}
// 利用 MethodIntrospector 来检查方法上的注解
Method method = MyService.class.getMethod("someBusinessMethod", SomeRequestType.class);
HandlerMethod handlerMethod = new HandlerMethod(new MyService(), method);
MethodIntrospector.selectMethods(MyService.class, method -> AnnotationUtils.findAnnotation(method, RequestMapping.class) != null);
HandlerMappingIntrospector 自省
HandlerMappingIntrospector
一个可能用于检查和分析处理器映射(Handler Mapping)相关配置的工具或组件。
业务场景:
假设你正在开发一个大型的 Web 应用程序,该程序使用 Spring MVC 作为其 Web 层的基础。随着应用程序的增长,控制器的数量和复杂性也在增加,导致难以管理和理解所有的请求映射。
为了解决这个问题,你可能需要一个工具来自动检测和报告应用程序中的所有处理器映射,包括它们关联的 URL 模式、控制器方法和参数信息。这将帮助你进行性能调优、安全性检查和代码重构。
关键处理代码:
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.stereotype.Controller;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
public class HandlerMappingIntrospector {
private final RequestMappingHandlerMapping handlerMapping;
public HandlerMappingIntrospector(RequestMappingHandlerMapping handlerMapping) {
this.handlerMapping = handlerMapping;
}
public void introspectAndReportMappings() {
// 获取所有映射的 URL 模式
handlerMapping.getHandlerMethods().forEach((pattern, handlerMethod) -> {
// 打印 URL 模式和处理的方法
System.out.println("Pattern: " + pattern + " is handled by " + handlerMethod);
// 检查方法上的注解
RequestMapping requestMapping = handlerMethod.getMethodAnnotation(RequestMapping.class);
if (requestMapping != null) {
System.out.println("RequestMapping: " + requestMapping);
}
// 打印方法参数
handlerMethod.getMethodParameters().forEach(param -> {
System.out.println(" Parameter: " + param);
});
});
}
}
// 使用示例
@Controller
class MyController {
@RequestMapping("/example")
public String exampleMethod() {
return "exampleView";
}
}
// 在配置类或启动类中
public class ApplicationConfig {
public static void main(String[] args) {
RequestMappingHandlerMapping handlerMapping = new RequestMappingHandlerMapping();
// 配置 handlerMapping...
HandlerMappingIntrospector introspector = new HandlerMappingIntrospector(handlerMapping);
introspector.introspectAndReportMappings();
}
}
转载自:https://juejin.cn/post/7382421853766680602