1

单击按钮时,我正在检索文件夹中的文件列表。检索文件夹的功能有效,如果我在呈现表格之前加载它,则值将按应有的方式显示。但是,如果我尝试使用调用初始化值列表的函数的命令按钮填充表,则不会对数据表进行任何更改。这是我的代码:

<h:form id="resultform"> 
    <p:dataTable id="resulttable" value="#{ViewBean.resultList}" var="result">
        <p:column>
            <f:facet name="header">
                <h:outputText value="GFEXP_NOM_BDOC" />
            </f:facet>
            <h:outputText value="#{result.name}" />
        </p:column>
        <p:column>
            <f:facet name="header">
                <h:outputText value="GFEXP_DATE_MODIF" />
            </f:facet>
            <h:outputText value="#{result.date}" />
        </p:column>
        <p:column>
            <f:facet name="header">
                <h:outputText value="GFEXP_PATH" />
            </f:facet>
            <h:outputText value="#{result.path}" />
        </p:column>
        <f:facet name="footer">
            <p:commandButton value="REFRESH exploitation" action="#{ViewBean.refresh}" update=":resultform:resulttable" ajax="true" />
        </f:facet>
    </p:dataTable>
</h:form>

这是支持 bean 的代码:

@ManagedBean(name = "ViewBean")
@ViewScoped
public class ViewBean implements Serializable {

    private static final long serialVersionUID = 9079938138666904422L;

    @ManagedProperty(value = "#{LoginBean.database}")
    private String database;

    @ManagedProperty(value = "#{ConfigBean.envMap}")
    private Map<String, String> envMap;

    private List<Result> resultList;

    public void initialize() {
        setResultList(Database.executeSelect(database));

    }

    public void refresh() {
        List<File> fileList = readDirectory();
        List<Result> tmpList = new ArrayList<Result>();
        for (File f : fileList) {
            Result result = new Result(f.getName().substring(0,
                    f.getName().lastIndexOf(".")), String.valueOf(f
                    .lastModified()), f.getPath().substring(0,
                    f.getPath().lastIndexOf("\\") + 1));
            tmpList.add(result);
        }
        setResultList(tmpList);
    }
//GETTERS AND SETTERS
4

1 回答 1

2

看起来您正在滥用preRenderView初始化视图范围 bean 的状态。然而,正如它的名字所说,它在视图渲染之前运行。您应该@PostConstruct为此使用注释。当放在一个方法上时,该方法将在 bean 的构造和所有托管属性和依赖注入之后被调用。它不会在同一视图上的所有后续回发请求上调用。

@PostConstruct
public void initialize() {
    resultList = Database.executeSelect(database);
}

不要忘记<f:event>完全删除。

也可以看看:

于 2013-08-21T14:32:55.123 回答