【SpringMVC】视图
SpringMVC中的视图是View
接口,视图的作用渲染数据,将模型Model
中的数据展示给用户
SpringMVC视图的种类很多,默认有转发视图和重定向视图
当工程引入jstl
的依赖,转发视图会自动转换为JstlView
若使用的视图技术为Thymeleaf
,在SpringMVC的配置文件中配置了Thymeleaf
的视图解析器,由此视图解析器解析之后所得到的是ThymeleafView
ThymeleafView
当控制器方法中所设置的视图名称没有任何前缀时,此时的视图名称会被SpringMVC配置文件中所配置的视图解析器解析,视图名称拼接视图前缀和视图后缀所得到的最终路径,会通过转发的方式实现跳转
转发视图
SpringMVC中默认的转发视图是InternalResourceView
SpringMVC中创建转发视图的情况:
当控制器方法中所设置的视图名称以"forward:"
为前缀时,创建InternalResourceView
视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,而是会将前缀"forward:"
去掉,剩余部分作为最终路径通过转发的方式实现跳转
index.html
<a th:href="@{/testForward}">测试请求转发</a>
控制器
@RequestMapping("/testForward")
public String testForward(){
return "forward:/wel";
}
@RequestMapping("/wel")
public String toWelcome() {
return "welcome";
}
主页超链接对/testForward
的请求到达控制器后被转发给/wel
,注意到地址栏路径是/testForward
而不是/wel
实现了请求转发。
重定向视图
SpringMVC中默认的重定向视图是RedirectView
当控制器方法中所设置的视图名称以"redirect:"
为前缀时,创建RedirectView
视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,而是会将前缀"redirect:"
去掉,剩余部分作为最终路径通过重定向的方式实现跳转
index.html
<a th:href="@{/testRedirect}">测试请求重定向</a>
控制器
@RequestMapping("/testRedirect")
public String testRedirect(){
return "redirect:/wel";
}
@RequestMapping("/wel")
public String toWelcome() {
return "welcome";
}
主页超链接对/testRedirect
的请求到达控制器后被转发给/wel
,注意到地址栏路径是/wel
,实现了请求重定向。
视图控制器view-controller
当控制器方法中,仅仅用来实现页面跳转,即只需要设置视图名称时,可以将处理器方法使用view-controller
标签进行表示
<!--
path:设置处理的请求地址
view-name:设置请求地址所对应的视图名称
-->
<mvc:view-controller path="" view-name=""></mvc:view-controller>
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:mvc="http://www.springframework.org/schema/mvc"
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/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.springmvc.gonghr.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>
<!-- 设置主页视图 -->
<mvc:view-controller path="/" view-name="index"></mvc:view-controller>
</beans>
注意:当SpringMVC中设置任何一个view-controller
时,其他控制器中的请求映射将全部失效,此时需要在SpringMVC的核心配置文件中设置开启mvc注解驱动的标签:<mvc:annotation-driven />