选择系统后(第一个 selectonemenu),我看到部分的下拉列表已填充,但是当我选择部分时,我看不到设置器被调用。因此,尽管我提交了表单,但我得到了 Validation Error Value is not valid。
<h:outputText value="System" />
<p:selectOneMenu value="#{moduleManagementController.selectedSystem}" converter="#{applicationSystemConverter}">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{applicationSystems}" var="appsystem" itemLabel="#{appsystem.name}" itemValue="#{appsystem}"/>
<p:ajax event="change" update="section" listener="#{moduleManagementController.onApplicationSystemChanged}"/>
</p:selectOneMenu>
<h:outputText value="Section" />
<p:selectOneMenu id="section" value="#{moduleManagementController.newModule.section}" converter="#{systemSectionConverter}">
<f:selectItem itemLabel="Select One" itemValue="" />
<f:selectItems value="#{moduleManagementController.assignableSysSections}" var="section" itemLabel="#{section.name}" itemValue="#{section}"/>
<p:ajax event="change" update="addModule"/>
</p:selectOneMenu>
以下是我的 SystemSection 的 equals 方法
public boolean equals(Object obj) {
if(this == obj) {
return true;
} if(obj == null) {
return false;
} if(! this.getId().equals(((SystemSection)obj).getId())) {
return false;
}
return true;
}
我的转换器类:
@Override
public Object getAsObject(FacesContext context, UIComponent component,
String value) {
if(value == null || "".equals(value)) {
return null;
}
try {
SystemSection section = systemSectionRepo.findById(Long.valueOf(value));
return section;
} catch (NumberFormatException e) {
return null;
}
}
/* (non-Javadoc)
* @see javax.faces.convert.Converter#getAsString(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.Object)
*/
@Override
public String getAsString(FacesContext context, UIComponent component,
Object value) {
if (value instanceof SystemSection)
{
return ((SystemSection)value).getId().toString();
}
return "";
}
我不确定出了什么问题。我理解的一件事是equals方法返回false,因此没有调用setter方法。有人可以帮我解决这个问题。