idea创建maven或spring boot的聚合体项目
程序员文章站
2024-02-03 21:01:28
...
1、以前的时候,我们的项目都是单一的项目,实用idea打开的时候也是只有单一的一个项目。但是maven的聚合项目不是这样的,他是可以由一个或者多个maven项目或者其他项目组成的。这就是我们下面要介绍到的聚合项目。
2、聚合项目的创建,首先是需要创建一个空的maven项目的,在idea中创建,如下图所示:
这里就跟咱们创建普通的maven项目的过程是一样的,创建成功之后,我们需要将我们创建的maven项目中的src文件夹删除掉,因为我们的聚合项目不需要这个创建的maven项目的src文件夹。
2、然后我们只需单击项目,右键new 创建Module即可。
3、点击module之后,这边会出现我们初始创建项目的弹窗,这时候我们在新建想对应的maven项目或者是spring boot 项目就可以啦。
4、每新建一个Module都需要在父类的pom.xml文件中进行相应的配置,添加一个相对应的<module></modul>,如下所示:
<!--注意打包方式为pom-->
<packaging>pom</packaging>
<!--注意设置module,将各个项目设置进去-->
<modules>
<module>redis</module>
<module>spring-jpa</module>
<module>spring-mybaties</module>
</modules>
<properties>
<java.version>1.8</java.version>
</properties>
<!--指定使用maven打包-->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!-- 跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
5、这样我们的聚合项目就正式的创建成功了,如果有什么疑问的话,可以关注我github上边的开源项目:https://github.com/shanhelin/allweb
推荐阅读
-
idea创建maven或spring boot的聚合体项目
-
idea spring boot 多模块项目创建
-
IDEA中用maven创建的Servlet项目
-
使用IntelliJ IDEA创建Spring Boot项目
-
IntelliJ IDEA创建Spring Boot项目
-
使用IDEA构建spring boot项目中踩过的坑
-
IDEA创建Maven项目一直显示正在加载的问题及解决
-
idea创建一个入门Spring Boot项目(controller层)使用Moven代码管理
-
spring boot创建项目包依赖问题的解决
-
使用IntelliJ IDEA 2017.2.5 x64中的Spring Initializr插件快速创建Spring Boot/Cloud工程(图解)