码迷,mamicode.com
首页 > Web开发 > 详细

MyEclipse中添加web项目到tomcat

时间:2014-05-06 22:51:13      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:java   ext   文件   com   c   type   

如果导入不是在MyEclipse下建立的web项目,想添加到tomcat中时,会显示“No projects are available for deployment to this server...............”。其实可以简单地修改两个配置文件:

.project文件:在natures节点中添加webnature

    <natures>
       <nature>com.genuitec.eclipse.j2eedt.core.webnature</nature>
        <nature>org.eclipse.jdt.core.javanature</nature>
        <nature>com.google.gwt.eclipse.core.gwtNature</nature>
        <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
    </natures>


.mymetadata文件,添加context-root和webrootdir

<?xml version="1.0" encoding="UTF-8"?>
<project-module
  type="WEB"
  name="DynaTable"
  id="myeclipse.1263372301465"
  context-root="/DynaTable"
  j2ee-spec="1.4"
  archive="DynaTable.war">
  <attributes>
   <attribute name="webrootdir" value="war" />
  </attributes>
</project-module>

MyEclipse中添加web项目到tomcat,布布扣,bubuko.com

MyEclipse中添加web项目到tomcat

标签:java   ext   文件   com   c   type   

原文地址:http://blog.csdn.net/zhangweikai966/article/details/25147443

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!