【问题标题】:ICEfaces dataExporter unable to export filesICEfaces dataExporter 无法导出文件
【发布时间】:2014-09-07 01:31:15
【问题描述】:

我有一个使用 ace:dataTable 和 ace:dataExporter 组件的非常简单的示例,其中 ace:dataExporter 在单击时不会将表导出到可下载文件。我在具有 ICEfaces 3.3.0 P02 的 Liferay 6.2 + Tomcat 7 JSF portlet 环境中使用这些组件。

我的tomcat日志中的错误:

14:10:46,669 ERROR [MissingResourceImpl:78] Resource handler=[com.liferay.faces.
bridge.application.ResourceHandlerOuterImpl@66e6676f] was unable to create a res
ource for resourceName=[s4107aa8f-7a4e-4dd3-a2fc-8a18aa77ecb8] libraryName=[null
] contentType=[null]
14:10:46,670 ERROR [MissingResourceImpl:136] Resource handler=[com.liferay.faces
.bridge.application.ResourceHandlerOuterImpl@66e6676f] was unable to create a re
source for resourceName=[s4107aa8f-7a4e-4dd3-a2fc-8a18aa77ecb8] libraryName=[nul
l] contentType=[null]
14:10:46,671 WARN [ResourceImpl:166] Unable to determine if user agent needs up
date because resource URL was null for resourceName=[s4107aa8f-7a4e-4dd3-a2fc-8a
18aa77ecb8]. 

我的 view.xhtml 的相关部分:

<ace:dataExporter id="dataExportExample" fileName="identities" target="identityData" type="csv" />
<ace:dataTable id="identityData"
               value="#{simpleTableBean.identities}"
               var="identity"
               paginator="true"
               rows="15">
    <ace:column headerText="id">
        <h:outputText value="#{identity.id}" />
    </ace:column>
    <ace:column headerText="name">
        <h:outputText value="#{identity.name}" />
    </ace:column>
</ace:dataTable>

【问题讨论】:

    标签: jsf liferay portlet icefaces


    【解决方案1】:

    问题是由于缺少依赖关系liferay-faces-1917-lsv-5-patch 版本 3.2.4-ga5。它已通过添加修复

    <dependency>
        <groupId>com.liferay.faces.patches</groupId>
        <artifactId>liferay-faces-1917-lsv-5-patch</artifactId>
        <version>3.2.4-ga5</version>
    </dependency>
    

    致我的专家pom.xml

    【讨论】:

      猜你喜欢
      • 2013-09-02
      • 2012-09-24
      • 1970-01-01
      • 2020-12-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多