为了在磁盘上下载 PDF
<bean id="pdfReport"
class="org.springframework.web.servlet.view.jasperreports.JasperReportsPdfView"
p:url="classpath:tree-template.jrxml"
p:reportDataKey="datasource"
p:subReportUrls-ref="customSubReportUrls"
p:subReportDataKeys-ref="customSubReportDatasource"
p:exporterParameters-ref="exporterParameters"/>
<util:map id="exporterParameters">
<entry key="net.sf.jasperreports.engine.JRExporterParameter.OUTPUT_FILE_NAME" value="c://tmp//asd.pdf"/>
</util:map>
我在jasper-views.xml文件中指定了上述内容,但我的 pdf 正在生成但没有保存到类路径或我指定的路径中。
我在指定jasper-views.xml文件时错了吗?