SpringMVC-配置JSP视图解析器

一、介绍
(1)Tomcat中提供了JSPServlet负责处理JSP文件。
(2)SpringMVC默认有请求转发视图(forward:)和重定向视图(redirect:),我们可以利用请求转发视图,将JSP文件的视图解析任务交给JSPServlet处理,故配置JSP视图解析器实际上是配置请求转发视图解析器,同时可以配置视图解析器的前缀和后缀属性来减少冗余代码。

二、项目测试
(1)在/WEB-INF/templates下创建index.jsp文件

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Titletitle>
head>
<body>
<h1>jsph1>
body>
html>

SpringMVC-配置JSP视图解析器_第1张图片

(2)编写SpringMVC-config.xml文件,配置JSP视图解析器


<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"
       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 http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="com.wsh.controller">context:component-scan>
    
    <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/templates/">property>
        <property name="suffix" value=".jsp">property>
    bean>

    
    <mvc:annotation-driven/>
    
    <mvc:view-controller path="/index" view-name="index">mvc:view-controller>
beans>

(3)运行
SpringMVC-配置JSP视图解析器_第2张图片

你可能感兴趣的:(SpringMVC,后端,java)