将图像文件放在大型多模块 Web 应用程序中的位置
我有一个大型的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是完全可以接受的。您可以创建一个“assets”项目,并拥有
images/module1/
、images/module2/
文件夹等。只是,在您的主应用程序中,您需要配置资产应用程序的路径。它甚至可以驻留在不同的主机上。例如
http://assets.yoursite.com
。然后在您的主应用程序中,您将拥有:(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:(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)