Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse 中创建了一个动态 Web 项目,但是当我设置服务器并部署它时,服务器总是在日志中报告警告级别消息,说明
访问文件的 Jar Manifest 时出错 .../WEB-INF/classes/META-INF/MANIFEST.MF:文件不存在!
但应用程序运行良好!为什么会出现此警告?这是什么意思,我怎样才能避免 id?
它的意思正是它所说的,该路径下没有清单文件。
应用程序使用清单文件来找出各种东西,主要是类路径中所需的库。
为了解决这个问题,只需转到 Webcontent/META-INF 并使用以下行创建一个 MANIFEST.MF 文件:
Manifest-Version: 1.0 Class-Path: