标签:method host 方法 nbsp ring 用户 发送 根据 请求
SpringMVC找Controller流程
1.扫描整个项目(Spring已经做了)定义一个Map集合。
2.拿到所有加了@Controller注解的类。
3.遍历类里面的所有方法对象。
4.判断方法是否加了@RequestMapping注解。
5.把@RequestMapping的Value 作为Map集合的Key给 put 进去 把Method对象 作为value 放入map集合
6.根据用户发送的请求拿到URL中的URI, URL:http://localhost:8080/test.do URI:/test.do
7.使用请求的URI 作为map 的 key 去map里面 get 看一看是否具有返回值
标签:method host 方法 nbsp ring 用户 发送 根据 请求
原文地址:https://www.cnblogs.com/xujiangxi/p/12359790.html