在struts2 中实现了编辑功能。单击提交按钮后,我在 JSP 中显示的 bean 值在动作类中正确获取。
但是我在 JSP 中没有提到的其他 bean 值正在返回 null。
如果我在 JSP 中显示 bean 的所有值,那么我可以在 Action 中获取所有值。
这是解决此问题的方法。否则,还有其他方法。
Action 类的代码是
UserForm userForm = new UserForm();
public String edit(){
String result = ActionSupport.ERROR;
HttpServletRequest request = (HttpServletRequest) ActionContext.getContext().get( ServletActionContext.HTTP_REQUEST);
HttpSession session = request.getSession(false);
if (null != session
&& null != (UserAccount) session.getAttribute(USER)) {
String editUser = (String) request
.getParameter(RequestAttributes.EDIT_USER);
UserAccount userAccount = userForm.getUserAccount();
if (null != editUser) {
//invoked when edit user page is submitted
userUtils.updateUserAccount(userAccount);
} else {
// invoked when edit user page gets loaded
String userAccSID = (String) request
.getParameter(USER_ACC_SID);
String roleSID = (String) request.getParameter(ROLE_SID);
if (null != userAccSID && null != roleSID) {
Long userAccSIDVal = Long.valueOf(userAccSID);
Long roleSIDVal = Long.valueOf(roleSID);
userAccount = userUtils
.loadUserAccount(userAccSIDVal);
userForm.setUserAccount(userAccount);
}
}
}
return result;
}
public UserForm getUserForm() {
return userForm;
}
public void setUserForm(UserForm userForm) {
this.userForm = userForm;
}
JSP页面的代码是
<s:form action="edit?editUser=edit">
<table align="center">
<s:hidden name="userForm.userAccount.createdBy"/>
<tr align="center">
<th>Edit User</th>
</tr>
<tr>
<td><s:textfield name="userForm.userAccount.firstName" label="First Name"/></td>
</tr>
<tr>
<td><s:textfield name="userForm.userAccount.lastName" label="Last Name"/></td>
</tr>
<tr>
<td><s:submit value="Save" /><s:reset value="Cancel" /></td>
</tr>
</table>
现在,如果我将 createdBy 隐藏,那么我可以在 Action 中获取 createdBy 的值。它的值已经由动作类设置。那么,为什么还要在jsp页面中设置呢?
任何帮助将不胜感激。谢谢