java.util.NoSuchElementException

在selectItem中使用了 valueChangeLisenter 后报错

java.util.NoSuchElementException 
javax.faces.component.SelectItemsIterator.next(SelectItemsIterator.java:96) 
..........


原因:
由于是request Bean ,故在valueChangeLisenter提交后,selectItem中的List变为空
解决办法:
faces-config.xml
将管理bean的managed-bean-scope
由request 改成session

你可能感兴趣的:(java,xml,bean)