0

将 WAR 文件部署到 websphere 应用程序服务器时,出现以下错误:

1. The EAR file could be corrupt and/or incomplete. Make sure that the application is at a compatible Java(TM) Platform, Enterprise Edition (Java EE) level for the current version of WebSphere(R) Application Server.
 2. org.eclipse.jst.j2ee.commonarchivecore.internal.exception.DeploymentDescriptorLoadException: WEB-INF/web.xml

我知道我当前的 web.xml 存在一些问题,但是在修复之前我如何才能找到这些问题。

Note: Exporting the WAR file from Eclipse
4

1 回答 1

2

错误的 DeploymentDescriptorLoadException 消息意味着您的 web.xml 可能有问题。检查 PROFILE_HOME/logs/SERVER/SystemOut.log(如果从控制台部署)或 PROFILE_HOME/logs/wsadmin.traceout(如果从 wsadmin 部署)。其中一个日志应该有一个异常堆栈跟踪,其中包含一些包含真正问题的“原因”。

于 2012-11-16T15:45:02.180 回答