0

私は JSP とサーブレットの初心者です。

web.xml ファイル

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <servlet>
        <servlet-name>LoginPage</servlet-name>
        <servlet-class>com.planner.servlet.LoginPage</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>LoginPage</servlet-name>
        <url-pattern>/LoginPage</url-pattern>
    </servlet-mapping>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContextBL.xml</param-value>
    </context-param>
</web-app>

index.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>
    <form method="POST" action="/LoginPage">
        <table border="1">
            <tr>
                <td>Login</td>
                <td><input type="text" name="login" />
                </td>
            </tr>
            <tr>
                <td>Senha:</td>
                <td><input type="password" name="pass" /></td>
            </tr>
            <tr>
                <input type="submit" value="Entrar" />
            </tr>
        </table>
    </form>
</body>
</html>

LoginPage.java

package com.planner.servlet;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

/**
 * Servlet implementation class LoginPage
 */
public class LoginPage extends HttpServlet {
    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public LoginPage() {
        super();
    }

    @Override
    public void init() throws ServletException {
        WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
        AutowireCapableBeanFactory bf = ctx.getAutowireCapableBeanFactory();

//      bf.autowireBean(this);
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
     *      response)
     */
    protected void service(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {
        PrintWriter out = response.getWriter();

        out.println("<html>");
        out.println("<head>");
        out.println("<title> TESTE </title>");
        out.println("</head>");
        out.println("<body>");
        out.println("Hello World!");
        out.println("</body>");
        out.println("</html>");
    }


}

問題: 送信ボタンをクリックすると、次のエラーが表示されます。

**type Status report

message /Apontador_Web/LoginPage

description The requested resource is not available.**

タグ「listener」と「context-param」を削除すると、サーブレットがロードされます。

何が起こっている可能性がありますか?

4

2 に答える 2

1

glashfish サーバー出力に移動し、いくつかの例外を探します

例外の名前を教えて

すべて印刷

于 2013-05-08T16:19:16.297 に答える
0

@WebServlet(urlPatterns={"/LoginPage"})クラス名の上に追加する必要があります。public class LoginPage extends HttpServlet {

于 2013-11-16T09:25:03.943 に答える