编程语言
首页 > 编程语言> > java – JSF错误“预期子组件类型…找到null.”

java – JSF错误“预期子组件类型…找到null.”

作者:互联网

使用< a4j:support>时就像在RichFaces example中描述的那样,在更改下拉框的值时,我总是会收到以下错误.

Expected a child component type of UISelectItem/UISelectItems for
component type javax.faces.SelectOne(myId). Found null.

这是JSF代码:

<h:selectOneMenu id="selectId" valueChangeListener="#{cs.myListener}" value="#{cs.selectList.selectedItem}">
 <f:selectItems value="#{cs.bundeslandList.selectItems}" />
 <a4j:support event="onchange" reRender="otherFieldId" />
</h:selectOneMenu>

<h:selectOneMenu id="otherFieldId">
 <f:selectItems value="#{cs.bundeslandList.selectOtherField.selectItems}" />
</h:selectOneMenu>

由于cs.bundeslandList.selectOtherField.selectItems至少是一个空的ArrayList,我确定otherFieldId不能为null.

我已经删除了整个页面,我不再收到错误了.正确调用valueChangeListener但不幸的是,调用后不会刷新otherFieldId.它被清空了.但是在调试时我可以看到相应的属性填充了条目.

解决方法:

< f:selectItems值>的getter在某些时候肯定会返回null.这个例外没有其他原因.可能你的支持bean代码逻辑流程是完全错误的.

请注意,将此属性设置为静态是一个非常糟糕的主意.它将在整个Web应用程序的所有其他请求之间共享.您希望基于请求或基于最高会话.

标签:java,ajax,jsf,richfaces,jsf-1-2
来源: https://codeday.me/bug/20190521/1147268.html