仅图像的单独项目 - 需要重构吗?
我有 webapp 项目(tomcat + jsp + spring)
我希望所有图像移动到不同的项目。它让我可以通过仅重新部署一场战争来改变形象。
我遇到的最大问题是,当我将图像移动到新项目时,我需要更改 jsp、css 文件中的所有路径。有没有无需大重构的解决方案? (也许过滤器将所有调用 /images/* 映射到 /ProjectWithImages/images/*?这个解决方案的性能好吗?)
I have webapp project (tomcat + jsp + spring)
I want all images move to different project. It'll give me possible to change images by redeploy only one war.
The biggest problem which I have is when I'll move images to new project I need change all paths in jsp, css files. Is there any solution without big refactoring? (maybe Filter which mapping all calling /images/* to /ProjectWithImages/images/*? Is performance good for this solution?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 Servlet 映射到
/images/*
并从那里 - 将目标文件作为流获取,并将其复制到输出流,设置所有必要的标头。Map a Servlet to
/images/*
and from there - get the target file as stream, and copy it to the output stream, setting all necessary headers.