成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

瀏覽:6日期:2023-03-18 11:22:03
新建父級(jí)項(xiàng)目

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

父級(jí)模塊添加完成!

添加子模塊

在父級(jí)模塊又擊 選擇 new ==> Moudule

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

創(chuàng)建方式與父級(jí)模塊創(chuàng)建大致一致,唯一不同的是將 Type 改為 Maven Project

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

打開(kāi)父級(jí)項(xiàng)目 demo-parent 下的pom.xml 文件復(fù)制以下三行配置信息

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

打開(kāi)子項(xiàng)目 demo-son 下的pom.xml文件將parent 節(jié)點(diǎn)下的前三行代碼替換成為剛剛復(fù)制的那三行,如下顯示

IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)

最后,在demo-parent 模塊下 的pom.xml文件下新建modules節(jié)點(diǎn),并添加子模塊

<modules><module>demo-son</module> </modules>

至此,父子模塊搭建完成 demo-son 的父級(jí)模塊為demo-parent ,而demo-parent 擁有了一個(gè)子模塊 demo-son

到此這篇關(guān)于IDEA 中創(chuàng)建SpringBoot 父子模塊的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)SpringBoot 父子模塊創(chuàng)建內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Spring
相關(guān)文章: