4.Spring MVC
Spring MVC是Spring提供的一个实现了Web MVC设计模式的轻量级Web框架。
三层架构分为表述层(或表示层)、业务逻辑层、数据访问层,表述层表示前台页面和后台servlet
4.1.Spring MVC优点:
① 基于原生的Servlet,通过了功能强大的前端控制器DispatcherServlet,对请求和响应进行统一处理
② 表述层各细分领域需要解决的问题全方位覆盖,提供全面解决方案
③ 代码清新简洁,大幅度提升开发效率
④ 内部组件化程度高,可插拔式组件即插即用,想要什么功能配置相应组件即可
⑤ 性能卓著,尤其适合现代大型、超大型互联网项目要求
4.2.配置
4.2.1.web.xml
(1)默认配置方式:此配置作用下,SpringMVC的配置文件默认位于WEB-INF下,默认名称为< servlet-name >-servlet.xml;
<servlet>
<servlet-name>test</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
(2)扩展配置方式:可通过init-param标签设置SpringMVC配置文件的位置和名称,通过load-on-startup标签设置SpringMVC前端控制器DispatcherServlet的初始化时间;(推荐)
<servlet>
<servlet-name>springMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:/springMVC.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<url-pattern>*.mvc</url-pattern>
</servlet-mapping>
4.2.2.SpringMVC配置文件
(1) test-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd ">
<context:annotation-config />
<!-- 把标记了@Controller注解的类转换为bean -->
<context:component-scan base-package="com.yuzo" />
<!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" ></bean>
<!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 -->
<!-- 跳转页面的设置 -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
(2)springMVC.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
<context:annotation-config />
<!-- 把标记了@Controller注解的类转换为bean -->
<context:component-scan base-package="com.yuzo" />
<mvc:annotation-driven></mvc:annotation-driven>
<!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
</beans>
4.2.3.视图解析器解析的是前缀 + 视图名 + 后缀
4.3.Spring MVC的工作原理
-
用户通过客户端向服务器发送请求,请求被
前端控制器DispatcherServlet
所拦截; -
DispatcherServlet拦截到请求后,会调用
HandlerMapping处理器映射器
; 处理器映射器根据请求URL找到具体的处理器,
生成处理器对象及处理器拦截器(如果有则生成)一并返回给DispatcherServlet;
-
DispatcherServlet会通过返回信息选择合适的
HandlerAdapter(处理器适配器)
; -
HandlerAdapter会调用Handler(处理器),这里的处理器指的就是程序中编写的Controller类,也被称为后端控制器;
-
Controller类 调用Model模型层中 Service 业务处理类的业务操作方法
-
Model模型层 与数据库进行持久化操作
-
Model模型层返回封装过的数据
-
Controller执行完成后,会返回一个ModelAndView对象,该对象中会包含视图名或包含模型和视图名;
-
HandlerAdapter将ModelAndView对象返回给DispatcherServlet;
-
DispatcherServlet会将ModelAndView对象选择一个合适的
VIewResolver(视图解析器)
; -
ViewResolver解析后,会向DispatcherServlet中返回具体的View(视图);
-
DispatcherServlet对View进行渲染(即将模型数据填充至视图中);
-
返回 静态页面
-
视图渲染结果会返回给返回给客户端浏览器显示。
简单模型