我已经创建了这样一个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>
使用bean类:
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;
}
}
和Servlet:
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未创建或未添加到属性中。
doBet()和doPost()都调用了processRequest()此代码有什么问题?
答案 0 :(得分:2)
您将请求发布到Ocen
servlet。执行servlet时,JSP尚未执行,因此jsp:useBean
尚未执行,因此bean尚未在请求中。
jsp:useBean
不应再使用了。请求参数应该在控制器servlet中读取,而不是在JSP中读取。您应该使用像Spring MVC或Stripes这样的MVC框架,它会自动将请求参数转换为表单bean,并将此表单bean传递给操作。