共享库 websphere
我想在 Websphere Application Server 中创建共享库。我在 abc 文件夹中有 abc.jar 。我想知道在类路径中指定 c:\abc 与 c:\abc\abc.jar 之间的区别
I want to create share library in Websphere Application Server. I have abc.jar inside abc folder. I want to know the difference between specifying c:\abc Vs c:\abc\abc.jar in the classpath
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 c:\abc 包含其他 jar,它们也会被添加到类路径中。如果 c:\abc 包含非 jar 文件(例如,c:\abc\test.properties),则 c:\abc 将被添加到类路径本身,这允许对该目录进行 getResource 调用(例如,ClassLoader.properties)。 getResource("test.properties") 将找到该文件)。
If c:\abc contains other jars, they will also be added to the classpath. If c:\abc contains non-jar files (e.g., c:\abc\test.properties), then c:\abc will be added to the classpath itself, which allows getResource calls for the directory to work (e.g., ClassLoader.getResource("test.properties") will find the file).