不属于服务器上 war 文件一部分的 PDF、视频、Jpg
我正在开发一个基于 STRUTS 2 的网络应用程序。我有大量的 pdf、视频,它们不能成为 war 文件的一部分,但必须位于我们的 websphere 服务器上的单独位置。在我的应用程序中配置位置的最佳方法是什么?
例如,我的 pdf 文件位于 d:/pdfs/abc.pdf 上,并且我想从我的 jsp 中将其作为链接打开。
- 谢谢
I am developing a STRUTS 2 based web app. I have a large number of pdf's, videos, that cannot be a part of the war file but have to be on a separate location on our websphere server. What is the best way to configure the location in my app?
For example , i will have my pdf's on d:/pdfs/abc.pdf and i want to open it from my jsp as links.
-- Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 WebSphere 前面使用 Web 服务器?如果是这样,我会对 JSP 链接进行硬编码,以使用您在 Web 服务器中“别名”的路径。因此,就像
/pdfs/abc.pdf
一样,其中/pdfs
是d:/pdfs
的 Web 服务器别名。Are you using a web server in front of WebSphere? If so, I'd hardcode the JSP links to use paths that you "alias" in your web server. So, like
/pdfs/abc.pdf
where/pdfs
is a web server alias tod:/pdfs
.