0

私は何年も経った後、再び Java に取り組もうとしています。さて、Eclipse IDE と Glassfish Server 3.1.2 を使用して、チュートリアルからサーブレット サンプルを作成しています。サンプルは、別の .jsp にデータを送信する単なるフォームです。フォームはサーブレットに送信され、サーブレットは出力 .jsp に Java Bean を設定します。

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>Encuesta de Desarrolladores</title>
</head>
<body>
   <h1>Bienvenido a la encuesta de desarrolladores!</h1>
   <p>Indica los lenguajes de programación con los que estas familiarizado</p>
   <form action="ServletController" method="post">
      <table> 
          <tr>
            <td>Nombre Completo:</td>
            <td><input type="text" name="nombreCompleto" value=""/></td>
          </tr>
          <tr>
            <td>Java:</td>
            <td><input type="checkbox" name="progLeng" value="java"/></td>
          </tr>
          <tr>
            <td>PHP:</td>
            <td><input type="checkbox" name="progLeng" value="php"/></td>
          </tr>
          <tr>
            <td>Python:</td>
            <td><input type="checkbox" name="progLeng" value="python"/></td>
          </tr>
          <tr>
            <td>Ruby:</td>
            <td><input type="checkbox" name="progLeng" value="ruby"/></td>
          </tr>
          <tr>
            <td></td>
            <td><input type="submit" value="Enviar"/></td>
          </tr>
      </table>
   </form>
</body>
</html>

ServletController.java

package com.j2ee.servlet;

import java.io.IOException;
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 com.j2ee.bean.DatosEncuesta;;


@WebServlet(name="ServletController", urlPatterns ={"/ServletController"})
public class ServletController extends HttpServlet {
    private static final long serialVersionUID = 1L;


    public ServletController() {
        super();
        // TODO Auto-generated constructor stub
    }


    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        func(request, response);
    }

    protected void func(HttpServletRequest req, HttpServletResponse res)  throws ServletException, IOException
    {
        DatosEncuesta datosEncuesta = new DatosEncuesta();
        datosEncuesta.setNombreCompleto(req.getParameter("nombreCompleto"));
        datosEncuesta.setProgLeng(req.getParameterValues("progLeng"));
        req.setAttribute("datosEncuesta", datosEncuesta);
        req.getRequestDispatcher("salida.jsp").forward(req, res);
    }
}

salida.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>Gracias!</title>
</head>
<body>
  <h2>Gracias por cubrir nuestra encuesta!</h2>
  <p>
    <jsp:getProperty name="DatosEncuesta" property="nombreCompleto" />
    Nos has indicado que estas familiarizado con los siguientes lenguajes de programación:
    <jsp:useBean id="DatosEncuesta" scope="request" class="com.j2ee.bean.DatosEncuesta" />
   </p>
    <ul>
    <%
        System.out.println("Llegue a JSP!");
        String[] lenguajesSeleccionados = DatosEncuesta.getProgLeng();
         if(lenguajesSeleccionados != null)
         {
             for(int i=0; i<lenguajesSeleccionados.length; i++){
    %>
      <li>
         <%=lenguajesSeleccionados[i] %>
      </li>
     <% }
     }%>
    </ul>
</body>
</html>

私は Java Bean を入れますが、それは明らかです。基本的には、string と string[] (getter と setter を含む) です。「DatosEncuesta」タイプは、コードに表示されます。

これを実行すると、何らかの理由で NullPointerException が発生します。最初は web.xml がないのだと思っていましたが、注釈について読みました。

誰かがこれについて私を助けてくれますか?

4

2 に答える 2

1

jsp:useBean and jsp:getProperty また、例外トレースは、問題がどこにあるかを見つけるのに役立ちます。

于 2013-02-04T03:43:44.853 に答える
0

jsp:useBeanおよびjsp:getPropertyは、要求オブジェクトから値を取得するための正しい方法ではありません。salida.jsp を以下のコードに置き換えるだけです。index.jsp から選択したチェックボックスを出力します。まだ問題がある場合はお知らせください。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <%@ page import="com.j2ee.bean.DatosEncuesta;"%>
    <!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>Gracias!</title>
    </head>
    <body>
    <h2>Gracias por cubrir nuestra encuesta!</h2>
    <p>
    <ul>

        <%
            DatosEncuesta objects = (DatosEncuesta) request.getAttribute("datosEncuesta");
        %>

        <%
            System.out.println("Llegue a JSP!");
            String[] lenguajesSeleccionados = objects.getProgLeng();
            if (lenguajesSeleccionados != null) {
                for (int i = 0; i < lenguajesSeleccionados.length; i++) {
        %>
        <li><%=lenguajesSeleccionados[i]%></li>
        <%
            }
            }
        %>
    </ul>
</body>
</html>
于 2013-02-04T04:52:56.857 に答える