一、SpringMVC工作原理?
Spring WebMVC属于Spring框架中的内容,DispatcherServlet(前端分发器)接收request,通过HandlerMapper(映射器)和HandlerAdaptor(适配器)找到处理请求的Controller(控制器),控制器调用模型层(dao、service、entity....)方法,返回ModelAndView视图模型,视图解析器返回view对象,前端控制器将数据回填至request域中。
二、如何使用SpringMVC?
web.xml中配置:
1、配置Spring监听器ContextLoaderListener 作用tomcat启动时创建WebApplicationContext(Spring IOC容器)
2、DispatcherServlert(SpringMVC核心类,接收request)
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>dipatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--如果没有配置init-param标签,容器默认会加载/WEB-INF/下面的servlet-name-servlet.xml-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/spring-*.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>