如何在 Web 应用程序项目的子目录中组织我的库
我正在开发一个具有数百个依赖项(jar 文件)的大型 Web 应用程序。我想以合理的方式组织 jar,因为每个软件都附带一堆 jar 文件,当我想删除或升级该软件的版本时,如果将其保存在子目录中会更容易。
问题是,当使用网络服务器(我使用的是 tomcat)时,所有库都需要位于 WEB-INF/lib 文件夹下,您不能创建子目录,否则它不会加载子目录中的 jars。
谢谢。
I am working on a huge web-application with hundreds of dependencies (jar files). I want to organise the jars in sensible way as each piece of software comes with its bunch of jar files and when I want to remove or upgrade version of that software it will be easier to do if kept in sub directories.
Problem is that when using a web-server (I'm using tomcat), all libs need to be under WEB-INF/lib folder, you cannot create subdirectories otherwise it doesn't load the jars in subdirectories.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
探索 Maven 来管理您的依赖项并为您创建 WAR 文件怎么样?这样您就不必关心它们是如何组织的。
How about exploring Maven for managing your dependencies and creating your WAR file for you? This way you would not necessarily have to care how they are organized.