尽管在 MANIFEST.MF 中正确指定,但“找不到主类:bla.bla.yada”
我尝试使用命令“java -jar Filename.jar”运行 .jar 文件,但总是收到错误消息“找不到主类:bla.bla.yada”。 我使用 Maven 构建整个应用程序,并在 MANIFEST.MF 中指定一个主类。文件中的路径是正确的,并且该类也存在于 jar 中的正确位置。
MANIFEST.MF 中省略了结尾的 .class。我希望这是正确的。您还有其他提示吗?
I'm trying to run a .jar file with the command "java -jar Filename.jar", but I am always getting an error saying "Could not find the main class: bla.bla.yada".
I build the whole application with Maven and specified a Main-Class in the MANIFEST.MF. The path in the file is correct and the class also exists at the right location in the jar.
The ending .class is omitted in the MANIFEST.MF. I hope this is correct. Do you have any other hints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您运行 jar 时,请确保您的类路径中也包含所有必需的库。
Make sure that you also have all required libraries in your class path, when you run your jar.