如何配置 Struts 2 以返回生成的 PDF?
<action name="trial_employee"
class="parity.action.TrialPrintEmployeeCopyAction">
<result>/protected/trial_employee.pdf</result>
</action>
我有一个生成 PDF 文件以供下载的操作类。如何配置操作结果以返回 PDF?
上面的方法不起作用,它给了我一个 404 错误,因为 pdf 不在物理上位于驱动器上,它是动态生成的。
<action name="trial_employee"
class="parity.action.TrialPrintEmployeeCopyAction">
<result>/protected/trial_employee.pdf</result>
</action>
I've got an action class that generates a PDF file for download. How do I configure the action result to return the PDF?
The above doesn't work, it gives me a 404 error because the pdf isn't physically on the drive, it's being generated dynamically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是动态生成的,您可以将其作为流返回,
更多详细信息如下
流媒体结果
If it is being generated dynamically you can return it as a stream something like
more details are here
Stream result