1.浏览器发送请求到服务器,被web.xml中的url-pattern拦截,被拦截的请求会被交由指定的前段控制器处理(dispatcherservlet)。访问mvc的核心配置文件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>
<!--设置配置文件的路径,如果不写,就是默认的配置方式,配置文件位于WEB-INF,文件名为srpingMVC-servlet.xml
,最好将配置文件放到rescources文件夹下,所以最好写下面的init-param标签-->
<!-- param-name标签的值是固定的contextConfigLocation-->
<init-param>
<param-name>contextConfigLocation</param-name>
<!--classpath代表项目的后端路径?待解决-->
<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>
<!--/ 代表所有的路径,在地址栏输入的所有内容,都会跳转到servlet-class所指定的地址-->
<!-- 注意,不包括jsp文件,jsp文件是特殊的servlet,不能由DispatcherServlet进行处理-->
<!--如果被DispatcherServlet处理了,spring就不认为该文件是jsp文件了,就不会显示-->
<!--/* 可以过滤所有请求(包括jsp页面)-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
2.读取spring.xml,开启视图解析器(dispatcherservlet),开启注解扫描
<?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="org.hxut"></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>
3.寻找控制器(就是注解是@Controller的类中,?@RequestMapping的value和请求一样的方法,有点像servlet的@webservlet注解,都是匹配请求的,符合就拦截。)该控制器或者说该方法返回的是一个字符串,是要显示的页面名
package org.hxut.zyk.com.hxut.zyk.Controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
//设置为ioc容器类
@Controller
public class Hellocontroller {
//可以标识在类上,标识在方法上
@RequestMapping("/")
public String firstpage()
{
return "index";
}
@RequestMapping("/target")
public String Gettarget()
{
return "target";
}
}
4.视图解析器(thymeleaf)给该字符串添加前缀和后缀,渲染页面,并请求转发跳转值该页面
|