WEB-INF/lib 目录是否应该由版本控制系统进行版本控制?
WEB-INF/lib
目录及其内容是否应该由 VCS 进行版本控制?
Should the WEB-INF/lib
directory and it's contents be versioned by a VCS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以轻松重建其内容,我会反对对其进行版本控制。
考虑到 VCS 的主要目标之一(管理历史记录并获取一个版本与另一个版本之间的增量),二进制文件的历史记录和增量在 VCS 中通常没有得到很好的管理。
这些二进制文件最好通过工件存储库(如 Nexus)来引用,其中构建脚本(如 Maven)可以在需要的地方访问和复制它们(如
例如 >WEB-INF/lib
目录)。If you can easily rebuild its content, I would argue against versioning it.
Considering one of the main goals of a VCS (manage the history and get the delta between one version and the other), the history and delta of binaries is often not well managed in a VCS.
those binaries are best referenced through an artifact repository (like Nexus), where a building script (like Maven) can access and copy them where they are needed (like a
WEB-INF/lib
directory for instance).