问题
项目使用idea的新建springboot项目 建立了多个module
结果出现
多module多root
原因
因为没有在父工程中加上子工程(module)
也就是没有父工程的pom.xml文件中在 modules 加上你的module
<modules>
<module>spring-jda-demo</module>
<module>spring-boot-learn</module>
<module>spring-boot-jdbc-demo</module>
<module>spring-boot-mongo-demo</module>
</modules>
解决
知道了原因 我们只需要在父工程加上我们的module 然后刷新即可
<modules>
<module>spring-jda-demo</module>
<module>spring-boot-learn</module>
<module>spring-boot-jdbc-demo</module>
<module>spring-boot-mongo-demo</module>
<module>spring-boot-druid-demo</module>
</modules>
刷新点击任意一个都可以
刷新按钮
最后只剩一个root 这对于一个强迫症来说 真是福音呀
only one root
网友评论