maven 學習總結(八)——使用Maven構建多模組專案
在平時的Javaweb專案開發中為了便於後期的維護,我們一般會進行分層開發,最常見的就是分為domain(域模型層)、dao(資料庫訪問層)、service(業務邏輯層)、web(表現層),這樣分層之後,各個層之間的職責會比較明確,後期維護起來也相對比較容易,今天我們就是使用Maven來構建以上的各個層。
專案結構如下:
system-parent
|—-pom.xml
|—-system-domain
|—-pom.xml
|—-system-dao
|—-pom.xml
|—-system-service
|—-pom.xml
|—-system-web
|—-pom.xml
一、建立system-parent專案
建立system-parent,用來給各個子模組繼承。
進入命令列,輸入以下命令:
mvn archetype:create -DgroupId=me.gacl -DartifactId=system-parent -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
命令執行完成之後可以看到在當前目錄(C:\Documents and Settings\Administrator)生成了system-parent目錄,裡面有一個src目錄和一個pom.xml檔案,如下圖所示:
將src資料夾刪除,然後修改pom.xml檔案,將jar修改為<packaging>pom</packaging>,pom表示它是一個被繼承的模組,修改後的內容如下:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>system-parent</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
二、建立sytem-domain模組
在命令列進入建立好的system-parent目錄,然後執行下列命令:
mvn archetype:create -DgroupId=me.gacl -DartifactId=system-domain -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
如下圖所示:
命令執行完成之後可以看到在system-parent目錄中生成了system-domain,裡面包含src目錄和pom.xml檔案。如下圖所示:
同時,在system-parent目錄中的pom.xml檔案自動新增了如下內容:
<modules>
<module>system-domain</module>
</modules>
這時,system-parent的pom.xml檔案如下:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>system-parent</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>system-domain</module>
</modules>
</project>
修改system-domain目錄中的pom.xml檔案,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,因為groupId和version會繼承system-parent中的groupId和version,packaging設定打包方式為jar
修改過後的pom.xml檔案如下:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>system-domain</artifactId>
<packaging>jar</packaging>
<name>system-domain</name>
<url>http://maven.apache.org</url>
</project>
三、建立sytem-dao模組
在命令列進入建立好的system-parent目錄,然後執行下列命令:
mvn archetype:create -DgroupId=me.gacl -DartifactId=system-dao -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
如下圖所示:
命令執行完成之後可以看到在system-parent目錄中生成了system-dao,裡面包含src目錄和pom.xml檔案。如下圖所示:
同時,在system-parent目錄中的pom.xml檔案自動變成如下內容:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>system-parent</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>system-domain</module>
<module>system-dao</module>
</modules>
</project>
修改system-dao目錄中的pom.xml檔案,,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,因為groupId和version會繼承system-parent中的groupId和version,packaging設定打包方式為jar,同時新增對system-domain模組的依賴,修改後的內容如下:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>system-dao</artifactId>
<packaging>jar</packaging>
<name>system-dao</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--system-dao需要使用到system-domain中的類,所以需要新增對system-domain模組的依賴-->
<dependency>
<groupId>me.gacl</groupId>
<artifactId>system-domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
四、建立system-service模組
在命令列進入建立好的system-parent目錄,然後執行下列命令:
mvn archetype:create -DgroupId=me.gacl -DartifactId=system-service -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
如下圖所示:
命令執行完成之後可以看到在system-parent目錄中生成了system-service,裡面包含src目錄和pom.xml檔案。如下圖所示:
同時,在system-parent目錄中的pom.xml檔案自動變成如下內容:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>system-parent</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>system-domain</module>
<module>system-dao</module>
<module>system-service</module>
</modules>
</project>
修改system-service目錄中的pom.xml檔案,,把<groupId>me.gacl</groupId>和1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,因為groupId和version會繼承system-parent中的groupId和version,packaging設定打包方式為jar,同時新增對system-dao模組的依賴,system-service依賴system-dao和system-domain,但是我們只需新增system-dao的依賴即可,因為system-dao已經依賴了system-domain。修改後的內容如下:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>system-service</artifactId>
<packaging>jar</packaging>
<name>system-service</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--
system-service依賴system-dao和system-domain,
但是我們只需新增system-dao的依賴即可,因為system-dao已經依賴了system-domain
-->
<dependency>
<groupId>me.gacl</groupId>
<artifactId>system-dao</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
五、建立system-web模組
在命令列進入建立好的system-parent目錄,然後執行下列命令:
mvn archetype:create -DgroupId=me.gacl -DartifactId=system-web -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
如下圖所示:
命令執行完成之後可以看到在system-parent目錄中生成了system-web,裡面包含src目錄和pom.xml檔案。如下圖所示:
在\system-web\src\main\webapp目錄中還生成了一個簡單的index.jsp,如下圖所示:
裡面的內容為
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>
system-web\src\main\webapp\WEB-INF目錄中生成了web.xml
同時,在system-parent目錄中的pom.xml檔案自動變成如下內容:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>system-parent</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>system-domain</module>
<module>system-dao</module>
<module>system-service</module>
<module>system-web</module>
</modules>
</project>
修改system-web目錄中的pom.xml檔案,,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,因為groupId和version會繼承system-parent中的groupId和version,同時新增對system-service模組的依賴,修改後的內容如下:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>system-web</artifactId>
<packaging>war</packaging>
<name>system-web Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<!--
system-web依賴system-service
-->
<dependency>
<groupId>me.gacl</groupId>
<artifactId>system-service</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>system-web</finalName>
</build>
</project>
注意,web專案的打包方式是war。
六、編譯執行專案
經過上面的五個步驟,相關的模組全部建立完成,怎麼執行起來呢。由於最終執行的是system-web模組,所以我們對該模組新增jetty支援,方便測試執行。修改system-web專案的pom.xml如下:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.gacl</groupId>
<artifactId>system-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>system-web</artifactId>
<packaging>war</packaging>
<name>system-web Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<!--
system-web依賴system-service
-->
<dependency>
<groupId>me.gacl</groupId>
<artifactId>system-service</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>system-web</finalName>
<plugins>
<!--配置Jetty外掛-->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
在命令列進入system-parent目錄,然後執行下列命令:
mvn clean install
如下圖所示:
命令執行完後,在system-web目錄下多出了target目錄,裡面有了system-web.war,如下圖所示:
命令列進入sytem-web目錄,執行如下命令,啟動jetty
mvn jetty:run
如下圖所示:
啟動jetty伺服器後,訪問http://localhost:8080/system-web/ 執行結果如下圖所示:
七、匯入Eclipse中進行開發
操作步驟如下所示:
相關文章
- maven 學習總結(三)——使用Maven構建專案Maven
- maven 學習總結(二)——Maven專案構建過程練習Maven
- Maven學習總結(42)——Maven多模組構建中常用的引數Maven
- maven學習總結(七)——eclipse中使用Maven建立Web專案MavenEclipseWeb
- Maven構建多模組工程Maven
- eclipse中基於maven構建多模組專案EclipseMaven
- 使用Maven構建Java專案MavenJava
- Maven 高階篇之構建多模組專案的方法Maven
- eclipse 使用 maven 構建專案EclipseMaven
- IntelliJ IDEA 構建maven多模組工程專案(詳細多圖)IntelliJIdeaMaven
- Maven學習總結Maven
- Maven 構建 Java 專案MavenJava
- Maven Web專案構建MavenWeb
- maven 學習總結(九)——使用Nexus搭建Maven私服Maven
- maven 學習總結(一)——Maven入門Maven
- maven 學習總結(四)——Maven核心概念Maven
- 首次使用ideal構建maven專案webIdeaMavenWeb
- Springboot建立maven多模組專案Spring BootMaven
- maven 學習總結(六)——Maven與Eclipse整合MavenEclipse
- 【Java】【專案構建】Idea中設定Gradle/Maven多模組依賴JavaIdeaGradleMaven
- maven 使用maven profile實現多環境可移植構建Maven
- 基於maven構建多模組化的SSM框架MavenSSM框架
- 將maven專案劃分為多個模組Maven
- Maven專案中resources配置總結Maven
- Maven專案多環境構建的最小配置方案指南Maven
- 你竟然沒用 Maven 構建專案?Maven
- maven多模組管理Maven
- 構建dubbo分散式平臺-maven構建根專案分散式Maven
- IntelliJ Idea14 建立Maven多模組專案,多繼承,熱部署配置總結(一)IntelliJIdeaMaven繼承熱部署
- 使用Eclipse 安裝 構建Maven專案 (step-by-step)EclipseMaven
- Maven 搭建spring boot多模組專案(附原始碼)MavenSpring Boot原始碼
- Spring Boot + Maven 多模組專案開發詳解Spring BootMaven
- IntelliJ IDEA中建立Web聚合專案(Maven多模組專案)IntelliJIdeaWebMaven
- Maven 學習筆記——將普通的Java專案轉換成Maven專案(3)Maven筆記Java
- Maven配置阿里雲代理加速構建專案Maven阿里
- Jenkins 2.32.3引數化構建maven專案-java專案JenkinsMavenJava
- maven 學習總結(五)——聚合與繼承Maven繼承
- 使用Maven整合SSH總結Maven