一、什么是 MVC
MVC 是一种软件架构的思想,将软件按照模型、视图、控制器来划分。
M:Model,模型层,就是工程中的 JavaBean,作用于处理数据。
JavaBean 两类分别为:①、实体类 Bean:专门存储业务数据,如 user 等。②、业务处理 Bean:指 Server 或 Dao 对象,专门用于处理业务逻辑和数据访问。
V:View,视图层:指工程中的 html 或 jsp 等页面,作用是与用户进行交互,展示数据。
C:Controller,控制层:指工程中的 servlet,作用是接收请求和响应浏览器。
MVC 工作流程:用户通过视图层发送请求到服务器,在服务器中请求被 Controller 接收,Contrller 层调用相应的 Model 层处理请求,处理完毕将结果返回给 Controller 层,Controller 再根据请求处理的结果找到相对应的 View 视图,渲染数据后最终响应给浏览器。
二、什么是 SpringMVC
SpringMVC 是 Spring 的一个后续产品,是 Spring 的子项目。
SpringMVC 是 Spring 为表述层开发提供了一整套完备的解决方案。在表述层框架经历了 Struct、WebWork、Struct2 等产品的历代更迭后,目前业界主要选择 SpringMVC 作为 Java EE 项目表述层开发的首选方案。
三层架构主要分为表述层、业务逻辑层、数据访问层,表述层表示前台页面和后台 servlet。
三、SpringMVC 的特点
1、Spring 家族原生产品,与 IOC 容器等基础设施无缝对接。
2、基于原生的 Servlet,通过功能强大的前端控制器 DispatcherServlet,对请求和响应进行统一处理。
3、表述层各细分领域需要解决的问题全方位覆盖、提供全面解决方案
4、代码清新简洁、大幅度提升开发效率。
5、内部组件化程度高,可插拔式组件即插即用,根据需要的功能配置相应组件即可。
6、性能卓著,适合现代大型互联网项目要求。
四、创建 SpringMVC 项目
4.1、开发环境
开发工具:idea2019 及以后版本都行
构建工具:maven3.8.4
服务器:tomcat9
Spring 版本:5.3.1
4.2、创建 maven 工程
添加依赖并导入
<packaging>war</packaging>
<!--添加依赖-->
<dependencies>
<!--SpringMVC-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.1</version>
</dependency>
<!--日志-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<!--servletAPI-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
<version>3.0.12.RELEASE</version>
</dependency>
</dependencies>
复制代码
点击并拖拽以移动
添加 webapp 目录
点击并拖拽以移动
编辑
添加 web.xml 文件
点击并拖拽以移动
编辑
点击并拖拽以移动
编辑
4.3、配置 web.xml 文件
配 web.xml 的默认方式(只能在 WEB-INF 目录下)
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<servlet>
<servlet-name>springMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<!--设置springmvc的核心控制器所处理的请求路径/所匹配的请求
可以是/login或.html或.js或.css方式的请求路径但/不能匹配.jsp请求路径的请求-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
复制代码
点击并拖拽以移动
/所匹配的请求可以是/login或.html或.js或.css方式的请求路径但/不能匹配.jsp请求路径的请求,因此就可以避免在访问jsp页面时,该请求被DispatcherServlet处理,从而产生找不到相应页面的错误。/*是能够匹配所有请求,如使用过滤器时,需要对所有请求进行过滤,就需要使用/*。
复制代码
配 web.xml 的扩展方式
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--配置SpringMVC的前端控制器,对浏览器发送的请求进行统一处理-->
<servlet>
<servlet-name>springMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--配置SpringMVC配置文件的位置和名称-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springMVC.xml</param-value>
</init-param>
<!--将前端控制器DispatcherServlet的初始化时间提前到服务器启动时-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<!--设置springmvc的核心控制器所处理的请求路径/所匹配的请求
可以是/login或.html或.js或.css方式的请求路径但/不能匹配.jsp请求路径的请求-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
复制代码
点击并拖拽以移动
点击并拖拽以移动
编辑
4.4、创建请求控制器
前端控制器对浏览器发送的请求进行统一处理,但具体的请求有不同的处理过程,因此需要创建处理具体请求的类,就是请求控制器。
请求控制器中的每一个处理请求的方法成为控制器方法。
SpringMVC 的控制器由一个 POJO(普通 Java 类)担任,因此需要通过 @Controller 注解将其标识为一个控制层组件,交给 Spring 的 IOC 容器管理,此时 SpringMVC 才能够识别控制器的存在。
点击并拖拽以移动
编辑
@Controller
public class HelloController {
}
复制代码
点击并拖拽以移动
4.5、配置 springMVC.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:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
<!--扫描组件-->
<context:component-scan base-package="com.cjc.springmvc.controller"></context:component-scan>
<!--配置Thymeleaf视图解析器-->
<bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
<property name="order" value="1"/>
<property name="characterEncoding" value="UTF-8"/>
<property name="templateEngine">
<bean class="org.thymeleaf.spring5.SpringTemplateEngine">
<property name="templateResolver">
<bean class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">
<!--视图前缀-->
<property name="prefix" value="/WEB-INF/templates/"/>
<!--视图后缀-->
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<property name="characterEncoding" value="UTF-8"/>
</bean>
</property>
</bean>
</property>
</bean>
</beans>
复制代码
点击并拖拽以移动
4.5、访问首页面
index.html 页面
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>首页</title>
</head>
<body>
<h1>首页</h1>
</body>
</html>
复制代码
点击并拖拽以移动
controller 层方法
@Controller
public class HelloController {
@RequestMapping("/")
public String index(){
//返回视图名称
return "index";
}
}
复制代码
点击并拖拽以移动
配置 tomcat
点击并拖拽以移动
编辑
点击并拖拽以移动
编辑
测试访问
点击并拖拽以移动
编辑
4.6、访问指定页面
index.html 页面
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>首页</title>
</head>
<body>
<h1>首页</h1>
<a th:href="@{/target}">访问指定页面target</a>
</body>
</html>
复制代码
点击并拖拽以移动
target.html 页面
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
你好,跳转成功
</body>
</html>
复制代码
点击并拖拽以移动
controller 层代码
@Controller
public class HelloController {
@RequestMapping("/")
public String index(){
//返回视图名称
return "index";
}
@RequestMapping("/target")
public String getTarget(){
return "target";
}
}
复制代码
点击并拖拽以移动
测试访问:
点击并拖拽以移动
编辑
总结:浏览器发送请求,若请求地址符合前端控制器的 url-pattern,该请求就会被前端控制器 DispatcherServlet 处理。前端控制器会读取 SpringMVC 的核心配置文件,通过扫描组件找到控制器,将请求地址和控制器中的 @RequestMapping 注解的 value 属性进行匹配,若匹配成功,该注解所标识的控制器方法就是处理请求的方法。处理请求的方法需要返回一个字符串类型的视图名称,该视图名称会被视图解析器解析,加上前缀和后缀组成视图路径,通过 Thymeleaf 对视图进行渲染,最终转发到视图所对应页面。
评论