エラーが発生するExcelエクスポートを実装しようとしています 以下は私が試した方法です
<h:form id="excelExport">
<a4j:outputPanel id="matched">
<h:panelGrid width="100%" border="1">
<rich:dataTable id="tblMatched" value="#{SampleBean.exportDataList}" var="iList" bgcolor="#ffffff" border="1" cellpadding="4" cellspacing="3" rows="10" width="100%" dir="LTR" frame="hsides" rules="all" >
<h:column>
<f:facet name="header">
<h:outputText style="" value="Feed Id" />
</f:facet>
<h:outputText value="#{iList.feedId}" > </h:outputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText style="" value="Data Source Name" />
</f:facet>
<h:outputText value="#{iList.sourceName}" > </h:outputText>
</h:column>
</rich:dataTable>
<h:commandLink value="Export table" action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}" />
</h:panelGrid>
</a4j:outputPanel>
</h:form>
リンクをクリックすると、次のエラーが表示されます
SEVERE: javax.el.PropertyNotFoundException: /SampleExport.xhtml @76,139 action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}": ターゲット到達不能、識別子 'org' が null に解決されましたjavax.faces.el.EvaluationException: javax.el.PropertyNotFoundException: /SampleExport.xhtml @76,139 action="#{org.jboss.seam.excel.excelExporter.export('excelExport:tblMatched')}": ターゲット到達不能、識別子'org' は null に解決されました
jboss-seam-excel.jar と jxl.jar を使用しました
私の問題を解決するための提案...????