使用JSP与App Engine时出错

时间:2013-12-06 06:50:50

标签: java google-app-engine jsp servlets

这是我的JSP文件。该文件的名称是NewFile.jsp。

    <%@ 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>Insert title here</title>
</head>
<body>
Hello this is JSP Page
</body>
</html>

这是servlet。

    package pack.exp;
import java.io.IOException;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.*;

@SuppressWarnings("serial")
public class JspTestingServlet extends HttpServlet 
{
     private static String Test_JSP = "/NewFile.jsp";

    public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException 
    {
        resp.setContentType("text/plain");
        resp.getWriter().println("Hello, world");

        String forward="";
        forward= Test_JSP;

        RequestDispatcher view = req.getRequestDispatcher(forward);


        try 
        {
            view.forward(req, resp);
        }

        catch (ServletException e) 
        {
            e.printStackTrace();
        }
    }
}

这是我的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" version="2.5">
    <servlet>
        <servlet-name>JspTesting</servlet-name>
        <servlet-class>pack.exp.JspTestingServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>JspTesting</servlet-name>
        <url-pattern>/jsptesting</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
</web-app>

部署应用程序后,我收到HTTP 404页面未找到错误 我是jsp的新手请有人帮助我。

1 个答案:

答案 0 :(得分:0)

你的代码很好。问题出在您的web.xml中,如图所示。

web.xml中的servlet类定义是

<servlet-class>pack.exp.JspAppEngineServlet</servlet-class>

您的Servlet java文件名是:Jsp_App_EngineServlet。存在不匹配,因此未找到。

因此,将Java文件名更改为:JspAppEngineServlet,它应该没问题。