在MyEclipse中,使用tomcat 部署web项目时,选择项目是,按钮是灰色的,
解决方案:
原因是因为,在web项目中少了一个.mymetadata文件,或者是存在.mymetadata文件,但是 context-root 不存在。
只需要在mymetadata文本中,设置context-root="/testProject" 其中的 "/testProject" 是指的项目名称.
,
然后,重启MyEclipse工具, ok。 我们,在部署时,发现能选择部署按钮了。
以下是.mymetadata文件内容:可以对比以下.
- <?xml version="1.0" encoding="UTF-8"?>
- <project-module
- type="WEB"
- name="wmba"
- id="myeclipse.1313137573642"
- context-root="/testProject"
- j2ee-spec="1.4"
- archive="wmba.war">
- <attributes>
- <attribute name="webrootdir" value="WebRoot" />
- </attributes>
- </project-module>
<?xml version="1.0" encoding="UTF-8"?> <project-module type="WEB" name="wmba" id="myeclipse.1313137573642" context-root="/testProject" j2ee-spec="1.4" archive="wmba.war"> <attributes> <attribute name="webrootdir" value="WebRoot" /> </attributes> </project-module>
评论