Primefaces问题:p:带有ViewScoped托管bean的p:datatable的filedownload

时间:2011-08-28 15:07:47

标签: jsf file-upload primefaces

p:来自p的filedownload:使用ViewScoped托管bean的datatable不起作用。它调用prepareFile和getFile方法两次。在我提到的方法的第一次调用中,它设置了表中的第一个文件,并且在方法的第二次调用中它设置了正确的文件,但是它总是只下载第一个而第二个永远不会下载。

为什么要拨两次电话?为什么要从表中设置第一个文件?有什么想法吗?

这是我的代码:

<p:dataTable id="offer_attachment_datatable"
                     widgetVar="offer_attachment_datatable"
                     var="attachment"
                     value="#{offerBean.offerAttachments}">
            <p:column>
                <f:facet name="header"/>
                <p:commandLink ajax="false" actionListener="#{offerBean.prepareFile(attachment)}" title="#{attachment.name}">
                    <p:graphicImage value="/resources/themes/navigator_b2e/images/drive-download.png" />
                    <p:fileDownload value="#{offerBean.file}"/>
                </p:commandLink>
            </p:column>
</p:dataTable>

和托管bean(简化):

private StreamedContent file;
private InputStream stream;

public void prepareFile(OfferAttachment attachment){
    System.out.println("Attachment: "+attachment.getName());
    stream = new ByteArrayInputStream(attachment.getAttachment());
    file = new DefaultStreamedContent(stream, "text/plain", attachment.getName());
    stream = null;
}

public StreamedContent getFile() {
    System.out.println("File: "+file.getName());
    return file;
}

public void setFile(StreamedContent file) {
    this.file = file;
}

所以,我用一个简单的p:confirmDialog做了一个解决方法,在那里我提取了有问题的ajax = false命令链接,所以我通过在p:datatable中单击它来选择附件并从p:confirmdialog执行下载。

2 个答案:

答案 0 :(得分:1)

我在2.2.1中遇到了同样的问题。我通过将p:commandLink替换为具有相同属性的p:commandButton来找到解决方案。似乎这是与commandLink组件

的行为相关的错误

答案 1 :(得分:0)

对我有用的解决方案是将“p:datatable”替换为“ui:repeat(facelets)and table”,如下所示:

<table role="grid">
<thead>
    <tr role="row">
        <th>File Name</th>
        <th>Action</th>
    </tr>
</thead>
<tbody>
    <ui:repeat value="#{downloadFileBean.files}" var="f">
        <tr role="row">
            <td><h:outputText value="#{f.name}" /></td>
            <td>
                <p:commandLink id="download" ajax="false">
                    <h:outputText value="Download" />
                    <p:fileDownload value="#{downloadFileBean.file}" />
                    <f:param name="fileName" value="#{f.name}" />
                </p:commandLink>
            </td>
        </tr>
    </ui:repeat>
</tbody>