如何jsp:forward没有找到指定的html页面,它不在同一个目录中或者在应用程序中但是找不到其他目录

时间:2013-08-29 03:50:51

标签: java html jsp

我有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>

0 个答案:

没有答案