JBoss的不同lib目录
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其他文件夹用于不同类型的共享库。例如,如果您有 10 个应用程序使用相同的数据库驱动程序,则确实没有理由为每个应用程序保留一个数据库驱动程序 jar(即 10 个 jar)。在这种情况下,您只需将其放入
jboss/server//lib
即可。jboss/server//lib
:这里的所有库在给定服务器配置中的所有应用程序之间共享jboss/common/lib
:在所有服务器配置之间共享jboss/lib/endorsed
:这与上面相同,只有当你在这里放置一个lib时,它总是会在jboss/lib中的类似lib之前找到。这个想法类似于JDK的Endorsed Standards Override MechanismOther 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 configjboss/common/lib
: shared between all server configsjboss/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