如何在manifest中指定jar文件?
我创建了一个 mail.jar 文件和 mywar.war 文件。我需要在manifest.mf中设置什么来使用mail.jar作为库?
I have created a mail.jar file and mywar.war file. What I need to set into the manifest.mf use the mail.jar as a library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不使用 MANIFEST.MF 将 jar 放入 war 文件的类路径中。你只需将它放入war文件中的WEB-INF/lib中即可。
You don't use a MANIFEST.MF to put a jar in the classpath of a war file. You just put it into WEB-INF/lib in the war file.
类路径:../relative/path_to_/mail.jar
编辑:
注意:相对路径应参考程序启动的目录。
Class-Path: ../relative/path_to_/mail.jar
EDIT:
Note: The relative path should be with reference from the directory where your program is starting.