gpt4 book ai didi

java - 无法使用 JSTL 访问 bean

转载 作者:行者123 更新时间:2023-12-01 11:57:26 25 4
gpt4 key购买 nike

请看下面的代码

<c:forEach var="patientBean" items="${requestScope['PatientBean']}">
<tr>
<td><img src="images/img1.jpg" width="30px" height="30px"/></td>
<td><c:out value="${patientBean.FirstName}"/><c:out value="${patientBean.MiddleName}"/><c:out value="${patientBean.LastName}"/></td>
<td><c:out value="${patientBean.dob}"/></td>
<td><c:out value="${patientBean.sex}"/></td>

<td><form name="form1" method="post" action="allergies.jsp">
<label>
<input type="submit" name="view" id="1" value="View">
</label>
<input name="idPatient" type="hidden" value=<c:out value="${patientBean.idPatient}"/>>
</c:forEach>

我有一个名为 PatientBean 的 bean。在 servlet 中,许多 PatientBean 被填充并添加到 ArrayList 中。上面的代码显示了我如何尝试访问 JSP 中的 ArrayList 并获取其中的 beans 数据。

下面是Servlet,它将请求转发给JSP

request.setAttribute("patientBean", patientBeanList);
RequestDispatcher requestDispatcher = request.getRequestDispatcher("patients.jsp");
requestDispatcher.forward(request, response);

但是确实没用。没有显示任何数据。我做错了什么?

下面是PatientBean

/**
*
* @author Yohan
*/
public class PatientBean implements Serializable {

private int idPatient;
private String firstName;
private String middleName;
private String lastName;
private Date dob;
private String sex;

/**
* @return the idPatient
*/
public int getIdPatient() {
return idPatient;
}

/**
* @return the firstName
*/
public String getFirstName() {
return firstName;
}

/**
* @return the middleName
*/
public String getMiddleName() {
return middleName;
}

/**
* @return the lastName
*/
public String getLastName() {
return lastName;
}

/**
* @return the dob
*/
public Date getDob() {
return dob;
}

/**
* @return the sex
*/
public String getSex() {
return sex;
}

/**
* @param idPatient the idPatient to set
*/
public void setIdPatient(int idPatient) {
this.idPatient = idPatient;
}

/**
* @param firstName the firstName to set
*/
public void setFirstName(String firstName) {
this.firstName = firstName;
}

/**
* @param middleName the middleName to set
*/
public void setMiddleName(String middleName) {
this.middleName = middleName;
}

/**
* @param lastName the lastName to set
*/
public void setLastName(String lastName) {
this.lastName = lastName;
}

/**
* @param dob the dob to set
*/
public void setDob(Date dob) {
this.dob = dob;
}

/**
* @param sex the sex to set
*/
public void setSex(String sex) {
this.sex = sex;
}


}

最佳答案

你有

<c:forEach var="patientBean" items="${requestScope['PatientBean']}">

但是

request.setAttribute("patientBean", patientBeanList);

请注意,属性名称区分大小写。因此 ${requestScope['PatientBean']} 将找不到名为 patientBean 的请求属性。

因为你以前有

<td><c:out value="${patientBean.dob}"/></td>

其中 patentBean 实际上引用 patentBeanList,您需要重命名一些内容。

您的请求属性应称为patentBeans

request.setAttribute("patientBeans", patientBeanList);

然后您就可以访问它

<c:forEach var="patientBean" items="${patientBeans}">

您的 var 现在允许您使用 ${patentBean} 来引用 items 中的各个元素。

关于java - 无法使用 JSTL 访问 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28326862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com