SpringMVC的执行过程
一 服务器加载过程
1.解析web.xml文件,通过web.xml文件中对前端控制器的配置,创建DispatcherServlet对象。
2.通过web.xml文件中对ContextConfiguration.xml位置的配置,找到并解析ContextConfiguration.xml文件,创建Controller类的单例对象。
二 处理用户请求过程
SpringMVC是基于组件的架构模式
SpringMVC的执行过程
一 服务器加载过程
1.解析web.xml文件,通过web.xml文件中对前端控制器的配置,创建DispatcherServlet对象。
2.通过web.xml文件中对ContextConfiguration.xml位置的配置,找到并解析ContextConfiguration.xml文件,创建Controller类的单例对象。
二 处理用户请求过程
SpringMVC是基于组件的架构模式