我遇到嵌套ui的问题:重复。
我有下一个代码:
<h:form>
<ui:repeat var="cartItem" value="#{shoppingCartBean.shoppingCartElements}">
... //cartItem info
<h:commandButton>
<f:ajax listener="#{shoppingCartBean.changePortabilityEvent(cartItem)}"/>
</h:commandButton>
<ui:repeat var="discount" value="#{shoppingCartBean.getItemDiscounts(cartItem)}">
... //discounts info
</ui:repeat>
</ui:repeat>
<h:form>
好吧,当我点击按钮时,就像ajax POST调用一样,但是当按下按钮时页面被处理并且cartItem为null,因此它会生成NullPointerException。
我的bean(shoppingCartBean)是SessionScope。
知道为什么吗?
提前致谢。