Idea建立多模組maven聚合專案的實現
阿新 • • 發佈:2020-01-07
1.怎麼理解maven的繼承和聚合
maven多模組專案通常由一個父模組和若干個子模組構成,每個模組都對應著一個pom.xml。它們之間通過繼承和聚合(也稱作多模組)相互關聯。多模組適用於一些比較大的專案,通過合理的模組拆分,實現程式碼的複用,便於維護和管理。
繼承:和java中的繼承有點類似,就是父pom.xml宣告的版本和引用的jar,子模組可以不用再引用直接呼叫。
聚合:父模組包含多個子模組就是聚合,多個子模組之間可以呼叫,但是要注意關係,不要兩個互相依賴,這樣做的好處就是可以通過一條命令進行構建
注意:
groupId是專案組織唯一的識別符號,實際對應JAVA的包的結構,artifactId是專案的唯一的識別符號,實際對應專案的名稱,就是專案根目錄的名稱。groupId一般分為多個段,一般第一段為域,第二段為公司名稱,第三段通常為專案名稱。
2.Idea建立多模組專案
2.1建立父模組(空的maven專案)
pom.xml配置 <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> </parent> <groupId>cn.yskcoder.fire</groupId> <artifactId>fire</artifactId> <packaging>pom</packaging> <version>v1.0</version> <modules> <module>fire-common</module> <module>fire-dao</module> <module>fire-service</module> <module>fire-web</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <spring-boot.version>2.1.6.RELEASE</spring-boot.version> </properties>
2.2.建立工具類(common)模組(dao、service同這個操作一樣)
pom.xml配置 <modelVersion>4.0.0</modelVersion> <parent> <artifactId>fire</artifactId> <groupId>cn.yskcoder.fire</groupId> <version>v1.0</version> </parent> <!--模組資訊--> <packaging>jar</packaging> <name>fire-common</name> <artifactId>fire-common</artifactId> <description>fire 通用工具類模組</description> <!--模組依賴--> <dependencies> </dependencies>
2.3.建立資料庫訪問(dao)模組(只貼pom.xml程式碼)
<modelVersion>4.0.0</modelVersion> <parent> <artifactId>fire</artifactId> <groupId>cn.yskcoder.fire</groupId> <version>v1.0</version> </parent> <!--模組資訊--> <packaging>war</packaging> <name>fire-web</name> <artifactId>fire-web</artifactId> <description>fire web模組</description> <!--模組依賴--> <dependencies> <dependency> <groupId>cn.yskcoder.fire</groupId> <artifactId>fire-service</artifactId> <version>v1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/webapp</directory> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build>
3.Idea打包多模組專案
clean package -Dmaven.test.skip=true
接下來有空會繼續更新這個專案
https://github.com/yskcoder/Fire
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。