使用Eclipse导入到web项目没有run on server?

使用Eclipse导入到web项目没有run on server? java

Eclipse导入到web项目没有run on server
因为之前的项目都是用myeclipse开发的,如今要换成eclipse来开发。可是项目导入到eclipse中发现该项目并非web项目,也不能部署到tomcat里面去。 如今解决了这个问题了。
      一.请首先确保你的机器上的eclipse是javaee版本的,或者已经安装看wtp插件 
      二.先Close Project,而后修改eclipse工程下的.project文件:           在 <natures> </natures>中加入 
    <nature>org.eclipse.wst.common.project.facet.core.nature</nature> 
    <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> 
    <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>     在 <buildSpec> </buildSpec>中加入       <buildCommand> 
        <name>org.eclipse.wst.common.project.facet.core.builder</name>   
        <arguments>          </arguments>   
    </buildCommand>      <buildCommand> 
        <name>org.eclipse.wst.validation.validationbuilder</name>          <arguments>          </arguments>      </buildCommand> 
三.Open Project,而后刷新项目,在项目->右击->Properties->Project
Facets->Modify Project,选择Java和Dynamic Web Module           web

配置Context Root 和Content Directory 以及源码路径。 tomcat