我正在实现更新用户详细信息的逻辑,因此我已经运行休眠查询和所需的类申请人对象现在我想要的是使用类申请人对象并使用属性getApplicantId()
并在 Struts2 文本字段中使用它
<%
String id="12"; // for not using static Id later i'll fetch Id from session.
UserData data=new UserData();
Applicant applicant=(Applicant)data.fetchUserData(id);
%>
现在我想在 struts2 文本字段中使用 JSP 的 ID,例如
<s:textfield name="fName" value="<%=applicant.getApplicantId()%>"/>