IDEA中如何快速复制当前父项目中的一个Module为新的项目呢?这个做法其实跟我们之前的文章Springboot.10.IDEA中如何快速复制一个Maven构建的springboot项目大致相同,部分设置微调即可
实现步骤
1.复制项目
下面一节我们讲拦截器,代码基于上个Modulespringboot-07-file
,所以我们复制该Module,并修改名称为springboot-08-interceptor
。如下图所示:
进入到项目中,修改springboot-07-file.iml
为springboot-08-interceptor.iml
。如下图所示:
2.引入项目
我们打开项目springboot-parent
,此时可以看到项目中是没有springboot-08-interceptor
这个Module的。如下图所示:
我们点击左上角的File
->Project Structure
或者直接使用快捷键Ctrl+Alt+Shift+S
。如下图所示:
弹出的Project Structure
如下图所示:
我们点击+
,选择Import Module
。如下图所示:
选择我们刚才复制的Module,点击OK
。如下图所示:
此时Project Structure
中的Module名称是springboot-07-file (1)
。如下图所示:
我们修改Module的名称为springboot-08-interceptor
,点击Apply
。可以发现此时在父项目中已经出现了该Module。然后我们点击OK
。如下图所示:
3.配置项目
上面父项目中虽然已经出现了新复制的Module,但项目尚未配置完成。我们分别修改以下三处:
除了上面三处,最好将项目的端口号一起修改了:
到这还没结束,我们点击IDEA右上方的Select Run/Debug configuration
,在configuration中修改Module名称为springboot08InterceptorApplication
,点击Apply
->OK
后面测试需要访问jsp页面,这里需要配置上
Working directory
最后我们点击右侧边栏的Maven
选项,点击上面的刷新,springboot-08-interceptor
能正常显示。如下图所示
4.测试
我们启动该项目,正常启动如下图所示:
浏览器访问http://localhost:8088/upload.jsp
。如下图所示: