handlermapping作用(如何配置handlermapping)
本文目录
如何配置handlermapping
DispatcherServlet要将一个请求交给哪个特定的Controller它需要咨询一个Bean——这个Bean的名字为“HandlerMapping”。 HandlerMapping是把一个URL指定到一个Controller上就像应用系统的web.xml文件使用将URL映射到servlet&...
如何实例化requestmappinghandlermapping类
RequestMappingHandlerMapping ,用于注解@Controller,@RequestMapping来定义controller.1 @Controller 2 @RequestMapping(value = “books“) 3 public class BookController { 4 5 @RequestMapping(value = “/{id}“) 6 @ResponseBody 7 public String getBook(@PathVariable(“id“) String id) { 8 // ... 9 return id;10 }11 }初始化时,3个类的大致分工如下: AbstractHandlerMethodMapping定义整个算法流程; RequestMappingInfoHandlerMapping提供匹配条件RequestMappingInfo的解析处理; RequestMappingHandlerMapping根据@RequestMapping注解生成 RequestMappingInfo,同时提供isHandler实现 整个初始化工作由AbstractHandlerMethodMapping的initHandlerMethods主导. 1. 使用BeanFactoryUtils扫描应用下的Object或者直接从容器中获取Object 2. 迭代类,分别判断isHandler判断目标类是否Handler 2.1 RequestMappingHandlerMapping.isHandler根据@Controller或@RequestMapping注解判断(有任意一个) 3. 对handler解析出所有需要分发的方法detectHandlerMethods 3.1 获取原始的Class《?》 3.2 使用HandlerMethodSelector.selectMethods过滤具体handler method,预留getMappingForMethod模板方法给子类 RequestMappingHandlerMapping.getMappingForMethod根据类,方法上的RequestMapping注解生成匹配条件RequestMappingInfo 3.3 对过滤到的每个method进行注册registerHandlerMethod a, 使用createHandlerMethod封装处理器为HandlerMethod b, 判断之前是否已经匹配条件对应的处理器是否冲突(相同的匹配条件只能有一个对应的处理器) c, 设置匹配条件到handler method的映射关系 d, 从匹配条件中解析出url,并注册到urlMap(url到匹配条件的映射),这边由RequestMappingInfoHandlerMapping.getMappingPathPatterns实现 4. 对HandlerMethod进行初始化handlerMethodsInitialized,其实现在什么都没做
更多文章:

电脑基础知识教程视频(电脑小白想学编程,网上教学视频看不懂怎么办)
2025年2月17日 04:30

java定时器实现(Java定时器Java定时器怎么实现一个任务多个时间点,给别人用时间可以改动的)
2025年2月21日 12:10

warning的动词(warning hands pinching 这两处ing 都是什么词性)
2025年3月10日 19:50

《绝地求生》Faze战队止步Curse Trials小组赛,你怎么看?汽车显示curse什么意思
2025年3月21日 04:20

与 或 非 三种逻辑符号(逻辑符号“与” “或” “非” 用什么表示 比如“+” “-” “&”都表示什么啊)
2025年3月1日 04:10

index函数怎么用match(比VLOOKUP函数好用10倍的函数Index+match函数怎么用)
2025年3月21日 08:00