websphere 部署myeclipse开发打包的WAR文件报错:
发生 IWAE0022E Exception occurred loading deployment descriptor for module "test.war" in EAR file "/home/IBM/WebSphere/AppServer/profiles/AppSrv02/wstemp/3506402/upload/test_war.ear" 异常。查看日志以获取详细信息。
解决方法:有可能是web.xml引起.如:
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
改为:
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
注:version改为2.4;所有javaee改为j2ee,共三处;web-app_2_5.xsd改为web-app_2_4.xsd.
posted on 2011-03-15 16:53
紫蝶∏飛揚↗ 阅读(1990)
评论(0) 编辑 收藏 所属分类:
随想 、
Websphere