Home Eclipse中将Java项目转换成Web项目的方法
Post
Cancel

Eclipse中将Java项目转换成Web项目的方法

用Eclipse开发项目的时候,把一个Web项目导入到Eclipse里会变成一个Java工程,将无法在Tomcat中进行部署运行,所以要转为Web项目。

  1. 找到.project文件,找到里面的<natures>标签,查看是否有下面的代码,没有则复制进去,如果Properties配置中有Project Facets选项则忽略此步骤。

    1
    2
    3
    
     <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>
    

    Java项目中只有下面一句

    1
    
     <nature>org.eclipse.jdt.core.javanature</nature>
    
  2. 刷新导入的项目。
  3. 在项目上点击右键,进入Properties配置,点击Project Facets,再点击Convert to faceted form进入属性设置。

  4. 勾选Dynamic Web ModuleJava,选择相应的版本,并点击下方出现的Further configuration available

  5. 配置Modify Faceted Project,此处是设置web.xml文件的路径,我们输入src/main/webappGenerate web.xml deployment descriptor自动生成web.xml文件,可选可不选。

  6. 点击OK-->Apply应用设置,Java项目即转换为了Web项目。

注:如果忘记点击Further configuration available,即忘记修改WebContentwebapp,可以点击Deployment Assembly选项,然后将WebContent删除,将webapp添加进去。该选项的功能:部署项目时,设置文件发布的路径以及jar包发布的路径。

This post is licensed under CC BY 4.0 by the author.