共享库 websphere

发布于 2024-11-03 14:28:30 字数 110 浏览 0 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

疯到世界奔溃 2024-11-10 14:28:30

如果 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文