Primefaces Datatable在触发操作时给出空指针异常

时间:2013-06-06 12:11:11

标签: java jsf primefaces

我正在尝试使用数据表组件,但在选择属性中使用数组而不是对象 Here is the sample from Primefaces showcase

我的域名是 EfaDocLabelModel ,我将CarDataModel(从showcase)更新为 EfaDocLabelModel ,这里是代码。

public EfaDocLabelModel() {
}
public EfaDocLabelModel(List<EfaDocLabelMatch> data) {
    super(data);
}
@Override
public EfaDocLabelMatch getRowData(String rowKey) {
      List<EfaDocLabelMatch> docLabelList = (List<EfaDocLabelMatch>) getWrappedData();
    for (EfaDocLabelMatch docLabel : docLabelList) {
        if (docLabel.getDoclabelId().toString().equals(rowKey)) {
            return docLabel;
        }
    }
    return null;
}
@Override
public Object getRowKey(EfaDocLabelMatch docLabel) {
    return docLabel.getDoclabelId();

}

当用户在 datatable 的页脚部分内触发命令按钮时,在我的托管bean中 我尝试获取选定的行,但它给出了

java.lang.NullPointerException
at java.lang.reflect.Array.newArray(Native Method)
at java.lang.reflect.Array.newInstance(Array.java:70)
at org.primefaces.component.datatable.feature.SelectionFeature.decodeMultipleSelection(SelectionFeature.java:53)
at org.primefaces.component.datatable.feature.SelectionFeature.decode(SelectionFeature.java:39)
at org.primefaces.component.datatable.DataTableRenderer.decode(DataTableRenderer.java:53)

我可以使用 CarDataModel 从showcase运行多项选择,但是根据我的需要修改它时使用相同的结构我会收到此错误。

这是我的豆子

public class DocLabelBean implements Serializable {
private List<EfaDocLabelMatch> docLabelMatchList;
private EfaDocLabelMatch[] docLabelArray;


    public String updateLabel() {
    EfaDocLabelMatch[] selectedDocArray = getDocLabelArray();//I m sure I m 
    //getting error because selectedDocArray is null. 
    DTO result = new DTO();
    for (EfaDocLabelMatch docLabel : selectedDocArray) {
    }

这是我的页面必需代码:

<p:dataTable emptyMessage="No Labeled Doc" 
 var="docLabel" value="#{docLabelBean.docLabelModel}" 
 selection="#{docLabelBean.docLabelArray}"> 
 <p:column selectionMode="multiple"  />
 <p:column headerText="Id" >  
 #{docLabel.doclabelId} 
 </p:column>  
 <p:column headerText="Doc No" >  
 #{docLabel.documentId}  
 </p:column>  
 <p:column headerText="Label Key" >  
 #{docLabel.docLabelKey}  
 </p:column>

来自页面的commanbutton代码:

<p:commandButton value="Sil" icon="ui-icon-search"  
update="@form"  process="@form"
action="#{docLabelBean.updateLabel()}" /> 

我尝试了ajax = false以及balusc提到的其他可能的错误原因但仍无法解决问题 这是 Bug report。我需要将选定的行分配给列表或数组,如果它有一个真正的错误有任何替代方法吗?

0 个答案:

没有答案