未找到 java 类路径中的 XML 文件

发布于 2024-10-08 03:09:08 字数 176 浏览 1 评论 0原文

我一直在尝试将一些配置文件添加到 JAR 清单类路径中。像 Spring、Log4j 文件等...当我运行 jar 时,它会拾取类路径上的其他 jar,以便它可以运行应用程序启动类(位于另一个 jar 中),但它只查找目录中的 XML 文件即使我可以在清单上看到它的路径,罐子也已找到。

关于如何解决这个问题有什么想法吗?

I've been trying to get some config files added into a JAR manifests class-path. Things like Spring, Log4j files etc... when I run the jar, it picks up other jars on the classpath so it can run the application starter class (which is in another jar) but it only looks for the XML files in the directory the jar is located, even though I can see it's path on the manifest.

Any ideas on how I can fix this?

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

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

发布评论

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

评论(1

终难愈 2024-10-15 03:09:08

尝试在 java 命令行上使用详细类加载开关运行它,以确保 jar 中的类确实被加载。

MANIFEST.MF 中的行长度限制为 72 个字节 - 确保那里没有很长的行。

http:// /download.oracle.com/javase/1.3/docs/guide/jar/jar.html#Notes%20on%20Manifest%20and%20Signature%20Files

Try to run it with verbose class loading switch on java command line to make sure classes in jars are actually being loaded.

There is a line length limit of 72 bytes in MANIFEST.MF - make sure you don't have a long lines there.

http://download.oracle.com/javase/1.3/docs/guide/jar/jar.html#Notes%20on%20Manifest%20and%20Signature%20Files

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