weblogic部署到myeclipse后启动报错Deployment descriptor "web.xml" is malformed解决办法

把weblogic部署到myeclipse下面,启动weblogic时就会报错:Deployment descriptor "web.xml" is malformed. Check against the DTD: org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'web-app'.

这是web.xml的配置出错了,不能用以前这个:


 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">

  这种格式,需要换成:


http://java.sun.com/dtd/web-app_2_3.dtd">

这种格式,问题解决。。

你可能感兴趣的:(weblogic部署到myeclipse后启动报错Deployment descriptor "web.xml" is malformed解决办法)