0

我有一个问题,我在支持 bean 中调用了一个方法,该方法应该更新一个列表,之后在我的 xhtml 页面上重新呈现丰富的:datagrid 以反映更改。通过调试我可以确认该方法被成功调用但是它在对列表进行一次迭代后跳出该方法并转到另一个类(不是我的类之一)。它永远不会返回到该方法,并且数据网格也永远不会重新呈现。

下面是相关的html和java代码。HTML:

<table width="650px">
    <tbody>
        <tr>
            <td width="325px" align="left"><h:outputText style="white-space: pre; font-weight: normal; font-family: Tahoma; font-size: 11px">Name :</h:outputText>
                <h:inputText id="searchName" size="25" value="#{myBean.searchName}"></h:inputText></td>
            <td width="325px" align="left"><h:outputText style="white-space: pre; font-weight: normal; font-family: Tahoma; font-size: 11px">Surname :</h:outputText>
                <h:inputText id="searchSurname" size="25" value="#{myBean.searchSurname}"></h:inputText></td>
        </tr>
        <tr>
            <td width="325px" align="left"><h:outputText style="white-space: pre; font-weight: normal; font-family: Tahoma; font-size: 11px">ID :</h:outputText>
                <h:inputText id="searchId" size="25" value="#{myBean.searchId}"></h:inputText></td>
            <td width="325px" align="left"><h:outputText style="white-space: pre; font-weight: normal; font-family: Tahoma; font-size: 11px">Status :</h:outputText>
                <h:inputText id="searchStatus" size="25" value="#{myBean.searchStatus}"></h:inputText></td>
        </tr>
        <tr>
            <td align="right"><a4j:commandButton action="#{myBean.searchRecords}" value="Search" render="dataList"></a4j:commandButton></td>
        </tr>
    </tbody>
</table>

爪哇:

public void searchRecords(){
    if(dataList == null){
        dataList = searchList;
    }

    searchList = Collections.<ListObj>emptyList();

    for (ListObj obj : dataList) {
        if((obj.getName().contains(searchName)) | (obj.getSurname().contains(searchSurname)) | (obj.getIdNumber().contains(searchId)) | (obj.getStatus().equalsIgnoreCase(searchStatus))){
            searchList.add(obj);
        }
    }
}

代码跳转到 searchList.add(obj) 上的未知类。我使用的是 Apache MyFaces JSF 2.1、RichFace 4.3 和 Java 1.6。我认为这可能与 JSF 生命周期有关,因为我对生命周期的理解严重缺乏,但出于同样的原因,我可能错了。不过,我正在阅读 BalusC 关于生命周期的帖子。

4

1 回答 1

0

您的根源是您试图将元素添加到空列表中。方法返回定义到 classCollections.emptyList();中的特殊内部类的实例。此特殊列表无法修改。尝试向其中添加元素不会修改其内容。EmptyListCollections

所以,换行searchList = Collections.<ListObj>emptyList();再试searchList = Collections.new ArrayList<ListObj>();一次。

于 2013-04-22T09:00:55.060 回答