JBoss的不同lib目录

发布于 2024-09-06 05:43:55 字数 296 浏览 4 评论 0原文

JBoss(5.1.0)使用了许多不同的 lib 目录:我可以找到 jboss/lib、jboss/lib/endorsed、jboss/common/lib、jboss/server/default/lib,当然还有 jboss/server/ default/deploy/myapp/WEB-INF/lib (我错过了什么吗?)。

从上面,我知道我需要使用最后一个(WEB-INF/lib)来放置我的应用程序需要的任何罐子。其他人呢?它们有什么用处以及我应该在那里放什么?为什么把它放在那里而不是放在 WEB-INF/lib 中?

谢谢 !

There is a number of different lib directories JBoss (5.1.0) uses: I can find jboss/lib, jboss/lib/endorsed, jboss/common/lib, jboss/server/default/lib and of course the jboss/server/default/deploy/myapp/WEB-INF/lib (am I missing something ?).

From the above, I know that I need to use the last one (WEB-INF/lib) to put any jars my app needs. What about all the others ? What is their use and what should I put there ? Why put it there and not in the WEB-INF/lib ?

Thanks !

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

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

发布评论

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

评论(1

他不在意 2024-09-13 05:43:55

其他文件夹用于不同类型的共享库。例如,如果您有 10 个应用程序使用相同的数据库驱动程序,则确实没有理由为每个应用程序保留一个数据库驱动程序 jar(即 10 个 jar)。在这种情况下,您只需将其放入jboss/server//lib即可。

  • jboss/server//lib:这里的所有库在给定服务器配置中的所有应用程序之间共享
  • jboss/common/lib:在所有服务器配置之间共享
  • < code>jboss/lib:这些是服务器本身的库(如果我没有记错的话,它们也在您的应用程序类路径上)
  • jboss/lib/endorsed:这与上面相同,只有当你在这里放置一个lib时,它总是会在jboss/lib中的类似lib之前找到。这个想法类似于JDK的Endorsed Standards Override Mechanism

Other folders are for different sorts of shared libs. For example, if you have 10 apps using same DB driver, there is really no reason to keep one db driver jar per application (i.e. 10 jars). In that case you can simply put it into jboss/server/<server config>/lib.

  • jboss/server/<server config>/lib: all libs here are shared between all apps in given server config
  • jboss/common/lib: shared between all server configs
  • jboss/lib: these are libs for server itself (if I am not mistaking, they are also on your app classpath)
  • jboss/lib/endorsed: this is the same as above, only if you put a lib here, it will always be found before similar lib in jboss/lib. The idea is similar to Endorsed Standards Override Mechanism of JDK
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文