目录
- 1.概述
- 2.中心控制器
- 3.搭建SpringMVC
- 更新pom依赖
- 配置web.xml
- 配置springmvc-servlet.xml
- 创建Controller
- 创建视图层
1.概述
Spring MVC是Spring Framework的一部分,是基于Java实现MVC的轻量级Web框架。
Spring MVC的特点:
- 轻量级,简单易学
- 高效 , 基于请求响应的MVC框架
- 与Spring兼容性好,无缝结合
- 约定优于配置
- 功能强大:RESTful、数据验证、格式化、本地化、主题等
- 简洁灵活
Spring的web框架围绕DispatcherServlet [ 调度Servlet ] 设计。
DispatcherServlet的作用是将请求分发到不同的处理器。
2.中心控制器
Spring MVC框架像许多其他MVC框架一样, 以请求为驱动 , 围绕一个中心Servlet分派请求及提供其他功能,DispatcherServlet是一个实际的Servlet (它继承自HttpServlet 基类)
SpringMVC的原理如下图所示:
当发起请求时被前置的控制器拦截到请求,根据请求参数生成代理请求,找到请求对应的实际控制器,控制器处理请求,创建数据模型,访问数据库,将模型响应给中心控制器,控制器使用模型与视图渲染视图结果,将结果返回给中心控制器,再将结果返回给请求者。
DispatcherServlet表示前置控制器,是整个SpringMVC的控制中心。用户发出请求,DispatcherServlet接收请求并拦截请求。
我们假设请求的url为 : http://localhost:8080/SpringMVC/hello
SpringMVC部署在服务器上的web站点,hello表示控制器
通过分析,如上url表示为:请求位于服务器localhost:8080上的SpringMVC站点的hello控制器。
- HandlerMapping为处理器映射。DispatcherServlet调用HandlerMapping,HandlerMapping根据请求url查找Handler。
- HandlerExecution表示具体的Handler,其主要作用是根据url查找控制器,如上url被查找控制器为:hello。
- HandlerExecution将解析后的信息传递给DispatcherServlet,如解析控制器映射等。
- HandlerAdapter表示处理器适配器,其按照特定的规则去执行Handler。
- Handler让具体的Controller执行。
- Controller将具体的执行信息返回给HandlerAdapter,如ModelAndView。
- HandlerAdapter将视图逻辑名或模型传递给DispatcherServlet。
- DispatcherServlet调用视图解析器(ViewResolver)来解析HandlerAdapter传递的逻辑视图名。
- 视图解析器将解析的逻辑视图名传给DispatcherServlet。
- DispatcherServlet根据视图解析器解析的视图结果,调用具体的视图。
- 最终视图呈现给用户。
3.搭建SpringMVC
新建一个Moudle,添加web支持
更新pom依赖
pom.xml
<project xmlns="http://maven.apache.org/POM/.0.0" | |
xmlns:xsi="http://www.w.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>.0.0</modelVersion> | |
<groupId>org.example</groupId> | |
<artifactId>SpringMVC</artifactId> | |
<version>.0-SNAPSHOT</version> | |
<properties> | |
<maven.compiler.source></maven.compiler.source> | |
<maven.compiler.target></maven.compiler.target> | |
<project.build.sourceEncoding>UTF-</project.build.sourceEncoding> | |
</properties> | |
<dependencies> | |
<!-- https://mvnrepository.com/artifact/junit/junit --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>.13.2</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-webmvc</artifactId> | |
<version>.3.23</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>.0.31</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis</artifactId> | |
<version>.5.11</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jdbc</artifactId> | |
<version>.3.23</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> | |
<dependency> | |
<groupId>org.aspectj</groupId> | |
<artifactId>aspectjweaver</artifactId> | |
<version>.9.9.1</version> | |
<scope>runtime</scope> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring --> | |
<dependency> | |
<groupId>org.mybatis</groupId> | |
<artifactId>mybatis-spring</artifactId> | |
<version>.0.7</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>.18.24</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<resources> | |
<resource> | |
<directory>src/main/java</directory> | |
<includes> | |
<include>**/*.properties</include> | |
<include>**/*.xml</include> | |
</includes> | |
<filtering>false</filtering> | |
</resource> | |
<resource> | |
<directory>src/main/resources</directory> | |
<includes> | |
<include>**/*.properties</include> | |
<include>**/*.xml</include> | |
</includes> | |
<filtering>false</filtering> | |
</resource> | |
</resources> | |
</build> | |
</project> |
配置web.xml
注册DispatcherServlet
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | |
xmlns:xsi="http://www.w.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app__0.xsd" | |
version=".0"> | |
<!-- 注册DispatcherServlet --> | |
<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-servlet.xml</param-value> | |
</init-param> | |
<!-- 启动顺序,数字越小,启动越早 --> | |
<load-on-startup></load-on-startup> | |
</servlet> | |
<!-- 设定所有请求都会被SpringMVC拦截 --> | |
<servlet-mapping> | |
<servlet-name>SpringMVC</servlet-name> | |
<url-pattern>/</url-pattern> | |
</servlet-mapping> | |
</web-app> |
配置springmvc-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w.org/2001/XMLSchema-instance" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:mvc="http://www.springframework.org/schema/mvc" | |
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 | |
http://www.springframework.org/schema/mvc | |
https://www.springframework.org/schema/mvc/spring-mvc.xsd"> | |
<!-- 自动扫描包,让指定包下的注解生效,由IOC容器统一管理 --> | |
<context:component-scan base-package="top.imustctf.controller"/> | |
<!-- 让Spring MVC不处理静态资源 --> | |
<mvc:default-servlet-handler /> | |
<!-- | |
支持mvc注解驱动 | |
在spring中一般采用@RequestMapping注解来完成映射关系 | |
要想使@RequestMapping注解生效 | |
必须向上下文中注册DefaultAnnotationHandlerMapping | |
和一个AnnotationMethodHandlerAdapter实例 | |
这两个实例分别在类级别和方法级别处理。 | |
而annotation-driven配置帮助我们自动完成上述两个实例的注入。 | |
--> | |
<mvc:annotation-driven /> | |
<!-- 视图解析器 --> | |
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" | |
id="internalResourceViewResolver"> | |
<!-- 前缀 --> | |
<property name="prefix" value="/WEB-INF/jsp/" /> | |
<!-- 后缀 --> | |
<property name="suffix" value=".jsp" /> | |
</bean> | |
</beans> |
在resource目录下添加springmvc-servlet.xml配置文件,配置的形式与Spring容器配置基本类似
创建Controller
public class HelloController { | |
// 真实访问地址 : 项目名/HelloController/hello | |
public String sayHello(Model model){ | |
// 向模型中添加属性msg与值,可以在JSP页面中取出并渲染 | |
model.addAttribute("msg","hello,SpringMVC"); | |
// web-inf/jsp/hello.jsp | |
// 因为在SpringMVC配置文件中添加了前缀和后缀 | |
return "hello"; | |
} | |
} |
创建视图层
在WEB-INF/jsp目录中创建hello.jsp , 视图可以直接取出并展示从Controller带回的信息;
可以通过EL表示取出Model中存放的值,或者对象;
<%@ page contentType="text/html;charset=UTF-" language="java" %> | |
<html> | |
<head> | |
<title>SpringMVC</title> | |
</head> | |
<body> | |
${msg} | |
</body> | |
</html> |
启动Tomcat,测试
访问路径:
http://localhost:8080/HelloController/hello
环境配置成功了