1

我创建了这样一个 JSP 文件:

<jsp:useBean id="ucz" class="pl.lekcja.beany.beany.Uczen" scope="request">
    <jsp:setProperty name="ucz" property="*"/> 
</jsp:useBean>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        <h1>Podaj dane ucznia:</h1>

        <form method="POST" action="Ocen">
            <table>
                <tr>
                    <td>Imie:</td>
                    <td><input type="text" name="imie" /></td>
                </tr>
                <tr>
                    <td>Nazwisko:</td>
                    <td><input type="text" name="nazwisko" /></td>
                </tr>
                <tr>
                    <td>Punkty:</td>
                    <td><input type="text" name="punkty" /></td>
                </tr>
                <tr>
                    <td colspan="2"><input type="submit" value="Oceń" /></td>
                </tr>
            </table>
        </form>
    </body>
</html>

带豆类:

import java.io.Serializable;

public class Uczen implements Serializable {
    private String imie, nazwisko;
    private int punkty;

    public Uczen() {

    }

    public Uczen(String imie, String nazwisko, int punkty) {
        this.imie = imie;
        this.nazwisko = nazwisko;
        this.punkty = punkty;
    }

    public String getImie() {
        return imie;
    }

    public void setImie(String imie) {
        this.imie = imie;
    }

    public String getNazwisko() {
        return nazwisko;
    }

    public void setNazwisko(String nazwisko) {
        this.nazwisko = nazwisko;
    }

    public int getPunkty() {
        return punkty;
    }

    public void setPunkty(int punkty) {
        this.punkty = punkty;
    }
}

和小服务程序:

public class Ocen extends HttpServlet {

    private static final int PROG_PUNKTOWY = 50;

    protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        Uczen uczen = (Uczen)request.getAttribute("ucz");
        System.out.println(uczen); // <---- here prints null, always, there's no "uczen" object in attributes
        String czyZdal = "nie ";

        if (uczen.getPunkty() >= PROG_PUNKTOWY) {
            czyZdal = " ";
        }

        request.setAttribute("czyZdal", czyZdal);
        request.getRequestDispatcher("/WEB-INF/wynik.jsp").forward(request, response);
    }
}

正如我在 servlet 的代码中所写的,有一点总是打印 null,而不是创建的 bean 类。未创建 Bean 或未将其添加到属性中。

processRequest() 由 doGet() 和 doPost() 调用

这段代码有什么问题?

4

1 回答 1

2

您将请求发布到您的Ocenservlet。当servlet被执行时,JSP还没有被执行,所以jsp:useBean还没有被执行,所以bean还没有在请求中。

jsp:useBean不应该再使用了。请求参数应该在您的控制器 servlet 中读取,而不是在您的 JSP 中。您应该使用像 Spring MVC 或 Stripes 这样的 MVC 框架,它会自动将请求参数转换为表单 bean,并将此表单 bean 传递给操作。

于 2013-09-30T11:09:18.893 回答