码迷,mamicode.com
首页 > 编程语言 > 详细

Java的SpringMVC执行流程

时间:2020-02-25 09:45:18      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:method   host   方法   nbsp   ring   用户   发送   根据   请求   

SpringMVC找Controller流程

1.扫描整个项目(Spring已经做了)定义一个Map集合。

2.拿到所有加了@Controller注解的类。

3.遍历类里面的所有方法对象。

4.判断方法是否加了@RequestMapping注解。

5.把@RequestMapping的Value 作为Map集合的Keyput 进去  把Method对象 作为value 放入map集合

6.根据用户发送的请求拿到URL中的URI,  URL:http://localhost:8080/test.do   URI:/test.do

7.使用请求的URI 作为map 的 key 去map里面 get 看一看是否具有返回值

 

Java的SpringMVC执行流程

标签:method   host   方法   nbsp   ring   用户   发送   根据   请求   

原文地址:https://www.cnblogs.com/xujiangxi/p/12359790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!