1

我正在实现更新用户详细信息的逻辑,因此我已经运行休眠查询和所需的类申请人对象现在我想要的是使用类申请人对象并使用属性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()%>"/> 
4

1 回答 1

0

Scriptlet 不能在 Struts2 标记中使用。我强烈建议将其转移到行动中。作为一种解决方法,您可以使用字符串化值

<s:textfield name="fName"><%=applicant.getApplicantId()%></s:textfield>
于 2013-03-28T17:41:35.200 回答