我在同一个页面上有几个这样的表单:
<h:form>
<h:selectOneMenu value="#{collectionBean.selectedCollection}">
<f:selectItems value="#{collectionBean.collectionItems}" />
<a4j:support event="onchange" />
</h:selectOneMenu>
<a4j:commandButton value="Add" action="#{collectionBean.addToCollection(_resource)}" >
</a4j:commandButton>
</h:form>
这是我的豆子:
@Name("collectionBean")
@Scope(ScopeType.SESSION)
public class CollectionBean {
private String selectedCollection;
public String getSelectedCollection() {
return selectedCollection;
}
public void setSelectedCollection(String collectionName) {
selectedCollection = collectionName;
}
public List<SelectItem> getCollectionItems() {
...
}
public void addToCollection(Resource res) {
...
}
}
表单与资源_resource
相关联,它的目标是让用户将资源添加到他选择的集合中。
问题是只有页面上的最后一个表单有效:当更改其他表单中的选择时,永远不会调用setSelectedCollection
方法。
你知道哪里出了问题吗?
正如这里和评论中所说,将多个组件绑定到同一个bean属性是没有意义的。因此,我在后台bean中使用Map,将资源id作为键。
<h:selectOneMenu value="#{collectionBean.selections[_resource.id]}">
<f:selectItems value="#{collectionBean.collectionItems}" />
<a4j:support event="onchange" />
</h:selectOneMenu>
仍然没有解决主要问题:只有页面上的最后一个表单有效。对于所有其他形式,从未调用getSelections
方法。
然后,我不再使用几个表单(每个选择菜单一个表单),而是使用了一个englobing表单。我不知道为什么,但它成功了…