创建maven工程
导入相关jar包
<!--导入Spring的核心jar包-->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.7.RELEASE</version>
</dependency>
<!--springWeb的jar-->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.7.RELEASE</version>
</dependency>
<!--springMVC的jar-->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.7.RELEASE</version>
</dependency>
springMVC的配置文件
<?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.xzy"></context:component-scan>
<!--配置一个视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml配置前端控制器
<servlet>
<servlet-name>springDispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<!--contextConfigLocation:指定springMVC配置文件位置-->
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</param-value>
</init-param>
<!--servlet启动加载,servlet原本是第一次访问创建对象
load-on-startup:服务器启动的时候创建对象,值越小优先级越高
-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<!--/* 和/都是拦截所有请求
/*的范围更大,会拦截JSP页面,导致页面无法正常显示
/ :不会拦截jsp页面
-->
<url-pattern>/</url-pattern>
</servlet-mapping>
SpringMVC运行流程
- 客户点击链接发送请求:
- 来到Tomcat服务器。
- SpringMVC前端控制器收到所有请求。
- 来看请求地址和具体@RequestMapping标注的 哪个请求匹配。
- 前端控制器找到了目标处理类和目标方法,直接利用反射执行目标方法。
- 执行完成之后拿到一个返回值,SpringMVC认为就是要去的地址。
- 拿到返回值通过视图解析器解析出完整的地址
- 拿到页面地址,前端控制器帮我们转发到页面。
前端控制器不指定配置文件位置
会默认在/WEB-INF/文件夹下去找springDispatcherServlet-servlet.xml(其中springDispatcherServlet为自己配的前端控制器名)。
/ 和 /* 的区别
<!--
/* 和/都是拦截所有请求
/*的范围更大,会拦截JSP页面,导致页面无法正常显示
/ :不会拦截jsp页面
-->
- 处理*.jsp是Tomcat的事情,每个项目的web.xml都继承于Tomcat的web.xml。
- 除了JSP和servlet其他都是静态资源。Tomcat在处理静态资源的时候会直接在项目中找到静态资源并直接返回。
- 前端控制器中配置了/相当于禁用了DefaultServlet,访问静态资源会直接去找@RequestMapping映射的请求。
- /* 是直接拦截所有的请求。