将图像文件放在大型多模块 Web 应用程序中的位置

发布于 2024-10-16 06:44:29 字数 158 浏览 2 评论 0原文

我有一个大型的 WEB 应用程序(jsp)。放置图像文件的最佳方式是什么?在多模块 Web 应用程序中将图像文件放在哪里?

我有很多图像,因此我希望能够轻松、单独地访问来修改它们。最好的方法是一些单独的项目,我可以在不停止我的主要应用程序部分的情况下重新部署它。这个解决方案可以接受吗?

I have big WEB application (jsp). What is the best way to put images files? Where to put images files in multi modules web application?

I have many images so I would like to have easy, separate access to modify them. The best way will be some separate project which I can redeploy without stop my main application part. Is this solution acceptable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

德意的啸 2024-10-23 06:44:29

是的,这是完全可以接受的。您可以创建一个“assets”项目,并拥有 images/module1/images/module2/ 文件夹等。

只是,在您的主应用程序中,您需要配置资产应用程序的路径。它甚至可以驻留在不同的主机上。例如http://assets.yoursite.com。然后在您的主应用程序中,您将拥有:

<img src="${assetServer}/images/module1/logo.png" />

(assetServer 请求属性可以放在那里并以多种方式配置,具体取决于设置和您的偏好。一个示例是 - 在 web.xml 中配置为 context-param,然后将在过滤器的请求中)

Yes, it is completely acceptable. You can create an "assets" project, and have images/module1/, images/module2/ folders, etc.

Just, in your main application, you will need to configure the path to the assets application. It can even reside on a different host. For example http://assets.yoursite.com. And then in your main application you'll have:

<img src="${assetServer}/images/module1/logo.png" />

(the assetServer request attribute may be put there and configured in multiple ways, depending on the setup and your preferences. One example is - configure as context-param in web.xml, and put in the request by a filter)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文