我有一个struts2问题,只有在出现验证错误时才会发生(当我第一次加载页面时没有发生,如果没有发生验证错误则不会发生)如果我删除选择标签,它工作正常,并在我提交表单后显示验证错误消息,但我需要这些选择,并且它们具有来自DB的动态信息,因此每次显示表单时都需要预加载它们。
我试图将deptList
和roleList
放在valuestack中或者将它们放到会话中,同样的事情发生了。
这是Action Class代码的一部分:
private List<DeptModel> deptList;
private List<RoleModel> roleList;
public List<RoleModel> getRoleList() {
return roleList;
}
public void setRoleList(List<RoleModel> roleList) {
this.roleList = roleList;
}
public List<DeptModel> getDeptList() {
return deptList;
}
public void setDeptList(List<DeptModel> deptList) {
this.deptList = deptList;
}
public String input() {
roleList = roleEbi.getAll();
this.setRoleList(roleList);
deptList = deptEbi.getAll();
this.setDeptList(deptList);
if (empModel.getUuid() != null) {// for data display when doing modify
empModel = empEbi.get(empModel.getUuid());
roleUuids = new Long[empModel.getRoles().size()];
int i = 0;
for (RoleModel temp : empModel.getRoles()) {
roleUuids[i++] = temp.getUuid();
}
}
return INPUT;
}
public String save(){
if(empModel.getUuid() == null ){
empEbi.save(empModel,roleUuids);
}else{
empEbi.update(empModel,roleUuids);
}
return TO_LIST;
}
这是JSP页面:
<s:form action="emp_save" method="post" onsubmit="return checkForm();">
<s:textfield id="username" name="empModel.userName" />
<s:textfield id="password" size="25" name="empModel.pwd"/>
<s:select name="empModel.deptModel.uuid" list="deptList" style="width:190px" listKey="uuid" listValue="name" />
<s:checkboxlist name="roleUuids" list="roleList" listKey="uuid" listValue="name"/>
<a href="javascript:document.forms[0].submit()"><img src="images/save.jpg" border="0" width="81px"/></a>
</s:form>
这是struts报告中的错误:
标记'select',字段'list',名称'empModel.deptModel.uuid':请求的列表键'deptList'无法解析为collection / array / map / enumeration / iterator类型。例如:人或人。{name}
这是我的验证xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE validators PUBLIC
"-//Apache Struts//XWork Validator 1.0.3//EN"
"http://struts.apache.org/dtds/xwork-validator-1.0.3.dtd">
<validators>
<field name="empModel.userName">
<field-validator type="requiredstring">
<param name="trim">true</param>
<message>User Name can not be null ~~~</message>
</field-validator>
</field>
<field name="empModel.pwd">
<field-validator type="requiredstring">
<message>Password can not be null ~~~</message>
</field-validator>
</field>
</validators>
答案 0 :(得分:1)
当您提交表单时,验证错误会阻止操作执行,因为workflow
拦截器返回结果INPUT。您可以通过在操作方法
@InputConfig(methodName="input")
public String save(){
if(empModel.getUuid() == null ){
empEbi.save(empModel,roleUuids);
}else{
empEbi.update(empModel,roleUuids);
}
return TO_LIST;
}
它将从拦截器调用方法input
来初始化列表,然后通过此方法返回INPUT
结果。