未找到 java 类路径中的 XML 文件
我一直在尝试将一些配置文件添加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 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