Eclipse web项目迁移到Intellij IDEA

时间:2024-03-30 10:39:55

第一步、将Eclipse的web导入到Intellij IDEA
注意先将Eclipse的web导项目做好备份

Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

然后一路next,项目就导入到了Intellij IDEA中:
Eclipse web项目迁移到Intellij IDEA

第二步、配置导入的Web项目

1、项目目录修改

- 删掉.settings、build、.classpath、.project
- 将WebContent改为Web

如下所示:

2、重写引入jar包

File–>Project Structure

Eclipse web项目迁移到Intellij IDEA

修改后:
Eclipse web项目迁移到Intellij IDEA

下面这一步操作,我的理解是设置项目资源的描述信息
Eclipse web项目迁移到Intellij IDEA

3、设置项目编译后的输出目录:
Eclipse web项目迁移到Intellij IDEA

会在项目中自动生成一个out文件夹,存放编译后的文件。

4、设置项目发布的路径:

Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

5、在发布路径下添加WEB-INF文件夹:
Eclipse web项目迁移到Intellij IDEA

6、在WEB-INF下创建classes和lib:
右击WEB-INF,选择Create Directory 创建classes和lib文件夹。

然后选中output root,点击+,选择Module Output:
Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

再点一次 +

Eclipse web项目迁移到Intellij IDEA

7、配置Tomcat:
Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

Eclipse web项目迁移到Intellij IDEA

ps:其实就是将Eclipse项目先导入,然后按照Intellij IDEA的方式重新设置了一遍