java - RichFaces 4 : DataModel handling 中的扩展数据表

标签 java jsf-2 richfaces

我还有一个问题,与我在 1 月份发布的问题有些相关。我有一个列表,它是 rich:extendedDataTable 组件,当用户在单独的文本框中键入他的搜索条件时,它会即时更新(即用户键入前 4 个字符,并且随着他不断键入,结果列表更改)。最后它运行良好,当我使用 RichFaces 3 时,但当我升级到 RichFaces 4 时,我遇到了各种编译问题。以下类不再可访问,并且似乎没有合适的替代品:

org.richfaces.model.DataProvider
org.richfaces.model.ExtendedTableDataModel
org.richfaces.model.selection.Selection
org.richfaces.model.selection.SimpleSelection

这是之前的样子:

这是应该触发搜索逻辑的输入文本:

<h:inputText id="firmname" value="#{ExtendedTableBean.searchValue}">
   <a4j:support ajaxSingle="true" eventsQueue="firmListUpdate"  
                reRender="resultsTable" 
                actionListener="#{ExtendedTableBean.searchForResults}" event="onkeyup" />
</h:inputText>

Action 监听器应该更新列表。这是 extendedDataTable,就在 inputText 的正下方:

<rich:extendedDataTable tableState="#{ExtendedTableBean.tableState}" var="item"
                       id="resultsTable" value="#{ExtendedTableBean.dataModel}">

        ... <%-- I'm listing columns here --%>

</rich:extendedDataTable>

这是后端代码,我在其中使用我的数据模型处理:

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.beans;

import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.ConcurrentModificationException;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.CopyOnWriteArrayList;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import org.richfaces.model.DataProvider;
import org.richfaces.model.ExtendedTableDataModel;

public class ExtendedTableBean {      
    private String sortMode="single";
    private ExtendedTableDataModel<ResultObject> dataModel;
    //ResultObject is a simple pojo and getResultsPerValue is a method that 
    //read the data from the properties file, assigns it to this pojo, and
    //adds a pojo to the list 

    private Object tableState;
    private List<ResultObject> results = new CopyOnWriteArrayList<ResultObject>();
    private List<ResultObject> selectedResults = 
                                      new CopyOnWriteArrayList<ResultObject>();

    private String searchValue;

    /**
     * This is the action listener that the user triggers, by typing the search value
     */
    public void searchForResults(ActionEvent e) {
       synchronized(results) {
           results.clear();
       }        

       //I don't think it's necessary to clear results list all the time, but here
       //I also make sure that we start searching if the value is at least 4 
       //characters long
       if (this.searchValue.length() > 3) {
           results.clear();
           updateTableList();
       } else {
           results.clear();
       }

       dataModel = null; // to force the dataModel to be updated.
    }

    public List<ResultObject> getResultsPerValue(String searchValue) {
        List<ResultObject> resultsList = new CopyOnWriteArrayList<ResultObject>();

        //Logic for reading data from the properties file, populating ResultObject
        //and adding it to the list

        return resultsList;
    }

    /**
     * This method updates a firm list, based on a search value
     */
    public void updateTableList() {
        try {              
            List<ResultObject> searchedResults = getResultsPerValue(searchValue);

            //Once the results have been retrieved from the properties, empty 
            //current firm list and replace it with what was found.

            synchronized(firms) {
                firms.clear();
                firms.addAll(searchedFirms);
            }
        } catch(Throwable xcpt) {
            //Exception handling
        }
    }

    /**
     * This is a recursive method, that's used to constantly keep updating the 
     * table list.
     */
    public synchronized ExtendedTableDataModel<ResultObject> getDataModel() {
        try {
            if (dataModel == null) {
                dataModel = new ExtendedTableDataModel<ResultObject>(
                               new DataProvider<ResultObject>() {
                                   public ResultObject getItemByKey(Object key) {
                                       try {
                                           for(ResultObject c : results) {
                                               if (key.equals(getKey(c))){
                                                   return c;
                                               }
                                           }
                                       } catch (Exception ex) {
                                           //Exception handling
                                       }
                                       return null;
                                   }

                                   public List<ResultObject> getItemsByRange(
                                                 int firstRow, int endRow) {
                                       return Collections.unmodifiableList(results.subList(firstRow, endRow));
                                   }

                                   public Object getKey(ResultObject item) {
                                       return item.getResultName();
                                   }

                                   public int getRowCount() {
                                       return results.size();
                                   }
                              });
            }
        } catch (Exception ex) {
            //Exception handling    
        }

        return dataModel;
    }

    //Getters and setters 

}

既然类 ExtendedTableDataModel 和 DataProvider 不再可用,我应该改用什么? RichFaces 论坛声称实际上什么都没有,开发人员在那里几乎是靠自己的(这意味着他们必须自己实现)。有没有人有任何其他想法或建议?

再次感谢您的帮助,对于一个冗长的问题,我们深表歉意。

最佳答案

您可以转换数据模型以扩展摘要 org.ajax4jsf.model.ExtendedDataModel相反,它实际上是与 <rich:extendedDataTable/> 一起使用的更强大和更高效的数据模型。 .将您现有的模型粗略翻译成下面的新模型(我决定使用您现有的 ExtendedDataModel<ResultObject> 作为基础数据源而不是 results 列表来演示翻译):

   public class MyDataModel<ResultObject> extends ExtendedDataModel<ResultObject>{

    String currentKey; //current row in the model
    Map<String, ResultObject> cachedResults = new HashMap<String, ResultObject>(); // a local cache of search/pagination results
    List<String> cachedRowKeys; // a local cache of key values for cached items
    int rowCount;
    ExtendedTableDataModel<ResultObject> dataModel; // the underlying data source. can be anything


    public void setRowKey(Object item){
     this.currentKey = (ResultObject)item.getResultName();   
    }

    public void walk(FacesContext context, DataVisitor visitor, Range range, Object argument) throws IOException {
    int firstRow = ((SequenceRange)range).getFirstRow();
    int numberOfRows = ((SequenceRange)range).getRows();
    cachedRowkeys = new ArrayList<String>();
    for (ResultObject result : dataModel.getItemsByRange(firstRow,numberOfRows)) {
       cachedRowKeys.add(result.getResultName());
       cachedResults.put(result.getResultName(), result); //populate cache. This is strongly advised as you'll see later.
       visitor.process(context, result.getResultName(), argument);
      }
    }

   }


 public Object getRowData() {
   if (currentKey==null) {
       return null;
   } else {
       ResultObject selectedRowObject = cachedResults.get(currentKey); // return result from internal cache without making the trip to the database or other underlying datasource
       if (selectedRowObject==null) {  //if the desired row is not within the range of the cache

           selectedRowObject = dataModel.getItemByKey(currentKey);
           cachedResults.put(currentKey, selectedRowObject);
           return selectedRowObject;
       } else {
           return selectedRowObject;
       }
   }

 public int getRowCount(){
 if(rowCount == 0){
    rowCount = dataModel.getRowCount(); //cache row count
    return  rowCount;
  }
  return rowCount

 }

这是该类中最重要的 3 个方法。还有很多其他方法,基本上是从您不需要担心的遗留版本中继承而来的。如果您要将 JSF 状态保存到客户端,您可能会对 org.ajax4jsf.model.SerializableDataModel 感兴趣用于序列化目的。看一个例子 here .这是一个旧博客,但逻辑仍然适用。

与此无关,您当前对 getRowData 的实现在生产级应用程序中表现不佳。必须遍历每个元素才能返回结果?尝试更好的搜索算法。

关于java - RichFaces 4 : DataModel handling 中的扩展数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13370478/

相关文章:

java - Primefaces commandButton 在 Carousel 中不起作用

jsf-2 - 警告 : This page calls for XML namespace declared with prefix [HTML element name] but no taglibrary exists for that namespace

java - JSF - 数据表中的 ValueChangeListener

java - joda-time 在解析时给出错误的日期

java - 对泛型类使用 Matchers.isNull()

java - 缓存驱逐在没有 key 的情况下不起作用,并且方法没有参数?

jakarta-ee - JSF - 将参数传递给@PostConstruct 方法

google-app-engine - 在 GAE1.7.3+ 中运行时从 BufferUtil.java 抛出 NumberFormatException

javascript - 整个表单重新呈现后,JSF CommandLink 在 Firefox 上不起作用

java - Hibernate缓存锁定错误