跪求解决方法:Myeclipse部署时Undefined exploded archive location
项目不能部署,错误信息为:Undefined exploded archive location
在网上看到其他人有类似情况,解决办法描述如下,但我没找到文件.mymetadata,哪位大侠帮帮我找到其他方法解决,或者找到.mymetadata。感谢感谢!
他人的解决方法:
1.在工程目录下的.mymetadata文件中可能webrootdir被改无效了(把下面内容拷到你的.mymetadate文件中的相应位置上);或者有可能少了这context-root这个属性;添加上这个属性即可,内容如下:
context-root="/上面的name属性值"
2.关掉Eclipse,再启动Eclipse,接着发布工程,发布成功!
.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>
--------------------编程问答-------------------- .mymetadata这个文件在你的MyEclipse工作目录,一般是workspace。然后找到你的项目名字,双击打开即是这个文件。 --------------------编程问答-------------------- 选中你的项目然后在工具栏找到那个open in explore 就是个累死文件夹的图标,,就会打开工作目录。里面就有那个你要找的文件了
补充:Java , Eclipse