我有 index.jsp,它在welcome-file-list 标签下定义。就这样
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Spring 3.0 MVC Series: Index </title>
</head>
<body>
<jsp:forward page="contacts.html"></jsp:forward>
<a href="hello.html">Say Hello</a>
</body>
</html>
现在它有一个转发操作,请求被转发到contacts.html,但在我的应用程序中,任何目录下都没有contacts.html页面,但web-inf文件夹下有一个页面contact.jsp。当我默认运行我的应用程序时,它会转到欢迎文件页面,现在它已转发到contacts.html 页面,并且由于我没有contacts.html,它必须向我显示一个错误,对吗?但相反,它向我显示了 web-inf 文件夹中的contact.jsp 页面。
有一张图片给出了应用程序结构的图片,给出了 index.jsp 页面和 contact.jsp 页面的存在。由于我的声誉,我不能在这里发布。
web.xml 文件。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Spring3MVC</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>