一般中大型項(xiàng)目都會(huì)將程序分為多個(gè)模塊來(lái)開(kāi)發(fā)瞳步,除了依賴(lài)第三方庫(kù)之外即横,不同模塊之間彼此也可能存在依賴(lài)關(guān)系芽淡, Gradle 提供的配置方式,可以很容易的完成多模塊建構(gòu)择示。
我們首先建立工程文件夾 chuxin-wechat束凑,并且在工程文件夾下針對(duì)四個(gè)模塊分別建立文件夾,接著執(zhí)行初始化指令栅盲。
我的工程目錄在E:\IdeaWorkSpace
所以操作步驟:ctrl+R 輸入cmd回車(chē)打開(kāi)命令行模式汪诉。
在命令行中輸入:cd E:
E:
E:\IdeaWorkSpace\
這樣就進(jìn)入了E盤(pán)下的工作目錄IdeaWorkSpace。
在該目錄下輸入以下命令:
E:\IdeaWorkSpace>mkdir chuxin-wechat\wechat-common
E:\IdeaWorkSpace>mkdir chuxin-wechat\wechat-dao
E:\IdeaWorkSpace>mkdir chuxin-wechat\wechat-server
E:\IdeaWorkSpace>mkdir chuxin-wechat\wechat-web
E:\IdeaWorkSpace>cd chuxin-wechat
gradle init
現(xiàn)在項(xiàng)目結(jié)構(gòu)就構(gòu)建完成了谈秫。
接著修改 settings.gradle 文件扒寄,將四個(gè)模塊加入其中
rootProject.name = 'chuxin-wechat'
include 'wechat-common', 'wechat-dao', 'wechat-server','wechat-web'
寫(xiě)代碼的時(shí)候通常會(huì)考慮到代碼重用的問(wèn)題, Gradle 構(gòu)建腳本也有類(lèi)似的功能拟烫, allprojects 屬性塊可以設(shè)定所有模塊共享的配置该编,例如:所有模塊都引入 idea 插件。
allprojects {
apply plugin: 'idea'
}
subprojects 屬性塊可以設(shè)定所有子模塊共享的配置硕淑,例如:所有模塊都引入 java 插件课竣, repositories,依賴(lài)包置媳,依賴(lài)包版本等
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
mainClassName = 'com.chuxin.wechat.web.admin.AdminApp'
repositories {
maven {url 'http://218.57.247.37:8081/repository/maven-public/'}
}
dependencies {
compile(
"org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
)
testCompile ("org.springframework.boot:spring-boot-starter-test:${springBootVersion}")
}
}
還可以在 configure 屬性塊根據(jù)模塊名稱(chēng)引入特定插件
configure(subprojects.findAll {it.name.contains('web')}) {
apply plugin: 'jar'
}
個(gè)別模塊所需要的配置則可以在 project 屬性塊中單獨(dú)設(shè)定
project(':wechat-common') {
dependencies {
compile(
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-orm:$springVersion",
"org.springframework:spring-tx:$springVersion",
"org.springframework.data:spring-data-jpa:1.10.3.RELEASE",
"org.hibernate:hibernate-entitymanager:$hibernateVersion",
"c3p0:c3p0:0.9.1.2",
"mysql:mysql-connector-java:6.0.4"
)
}
}
project(':wechat-dao') {
dependencies {
compile(
project (':core'),
"org.springframework:spring-web:${springVersion}"
)
}
}
project(':wechat_server') {
dependencies {
compile(
project (':core'),
"org.springframework:spring-web:${springVersion}"
)
}
}
project(':wechat_web') {
dependencies {
compile(
project (':core'),
"org.springframework:spring-web:${springVersion}"
)
}
}
注意:以上所加jar包等配置軍均為演示于樟,在后續(xù)實(shí)際項(xiàng)目中會(huì)一點(diǎn)一點(diǎn)的往里面加。
以上是其中一種方式拇囊,將所有內(nèi)容寫(xiě)在總工程資料夾下的 build.gradle 中迂曲,如果是大型項(xiàng)目,切分為眾多模塊寥袭,且建構(gòu)腳本的內(nèi)容既多且復(fù)雜路捧,那也可以將每個(gè)模塊資料夾下產(chǎn)生一份 build.gradle,用來(lái)處理個(gè)別模塊的建構(gòu)過(guò)程传黄,類(lèi)似父類(lèi)別與子類(lèi)別的概念杰扫,將需要重用的屬性塊及函數(shù)等寫(xiě)在上層 build.gradle 中,即可讓所有模塊的 build.gradle 調(diào)用尝江。
以上是本文對(duì)多模塊做法的介紹