Undefined exploded archive location错误

问题:myeclipse中用tomcat部署项目出现Undefined   exploded   archive   location错误,同时部署的那个页面finish按钮一直是不可用状态。

解决方法:
1.在工程目录下的.mymetadata文件中可能webrootdir被改无效了(把下面内容拷到你的.mymetadate文件中的相应位置上);或者有可能少了这context-root这个属性;添加上这个属性即可,内容如下:
            context-root="/上面的name属性值"
          2.关掉myeclipse,再启动myeclipse,接着发布工程,发布成功!

.mymetadata文件
<?xml version="1.0" encoding="UTF-8"?>
<project-module
  type="WEB"
  name="myweb"
  id="myeclipse.1202968712015"
context-root="/myweb"  j2ee-spec="1.4"
  archive="personnel.war">
  <attributes>
    <attribute name="webrootdir" value="WebRoot" />
  </attributes>
</project-module>

你可能感兴趣的:(tomcat,xml,MyEclipse)