1
#{exporterController.customExporter}的實現在哪裏使用JSF PrimeFaces庫構建Java應用程序。我不想使用開源PDF庫來生成報告。我一直在試圖找出使用PrimeFaces Extensions數據導出器來生成包含許多數據表的PDF文件。我講的這個鏈接:利用這件特定的代碼PrimeFaces Extensions<pe:exporter> showcase
不過,我有問題:
<p:panel header="Export PDF">
<p:commandLink id="pdf" ajax="false">
<p:graphicImage value="/resources/images/pdf.png"/>
<f:setPropertyActionListener value="false" target="#{exporterController.customExporter}" />
<pe:exporter type="pdf" target="resumenTable,resumenTablePlan" fileName="example" datasetPadding="4"/>
</p:commandLink>
</p:panel>
我似乎無法找到#{exporterController.customExporter}
實現可能有人請指導我以便我可以找到customerExporter方法的實現?
我還沒有搞清楚。我知道的是我包含了 ,它給了我一個錯誤,說它找不到那個類。但我會嘗試刪除它,看看發生了什麼。 –
Erick
我會檢查,我會讓你知道 – Erick
我刪除了行並點擊pdf鏈接,它什麼都不做。它不下載PDF。有一些我的控制器類需要做的,我失蹤 –
Erick