【第十三篇】- Maven 快照(SNAPSHOT)之Spring Cloud直播商城 b2b2c電子商務技術總結

JIAN2發表於2021-09-07

Maven 快照(SNAPSHOT)

一個大型的軟體應用通常包含多個模組,並且通常的場景是多個團隊開發同一應用的不同模組。舉個例子,設想一個團隊開發應用的前端,專案為 app-ui(app-ui.jar:1.0),而另一個團隊開發應用的後臺,使用的專案是 data-service(data-service.jar:1.0)。

現在可能出現的情況是開發 data-service 的團隊正在進行快節奏的 bug 修復或者專案改進,並且他們幾乎每隔一天就要釋出庫到遠端倉庫。 現在如果 data-service 團隊每隔一天上傳一個新版本,那麼將會出現下面的問題:

  • data-service 團隊每次釋出更新的程式碼時都要告知 app-ui 團隊。
  • app-ui 團隊需要經常地更新他們 pom.xml 檔案到最新版本。

為了解決這種情況, 快照的概念派上了用場。


什麼是快照?

快照是一種特殊的版本,指定了某個當前的開發進度的副本。不同於常規的版本,Maven 每次構建都會在遠端倉庫中檢查新的快照。 現在 data-service 團隊會每次釋出更新程式碼的快照到倉庫中,比如說 data-service:1.0-SNAPSHOT 來替代舊的快照 jar 包。


專案快照 vs 版本

對於版本,如果 Maven 以前下載過指定的版本檔案,比如說 data-service:1.0,Maven 將不會再從倉庫下載新的可用的 1.0 檔案。若要下載更新的程式碼,data-service 的版本需要升到1.1。

快照的情況下,每次 app-ui 團隊構建他們的專案時,Maven 將自動獲取最新的快照(data-service:1.0-SNAPSHOT)。

app-ui 專案的 pom.xml 檔案

app-ui 專案使用的是 data-service 專案的 1.0 快照。

< project xmlns = " "   xmlns:xsi = " "   xsi:schemaLocation = "   " >   < modelVersion > 4.0.0 </ modelVersion >   < groupId > app-ui </ groupId >   < artifactId > app-ui </ artifactId >   < version > 1.0 </ version >   < packaging > jar </ packaging >   < name > health </ name >   < url > </ url >   < properties >       < project . build . sourceEncoding > UTF-8 </ project . build . sourceEncoding >   </ properties >   < dependencies >       < dependency >       < groupId > data-service </ groupId >         < artifactId > data-service </ artifactId >         < version > 1.0-SNAPSHOT </ version >         < scope > test </ scope >       </ dependency >   </ dependencies > </ project >

data-service 專案的 pom.xml 檔案

data-service 專案為每次小的改動釋出 1.0 快照。

< project xmlns = " "   xmlns:xsi = " "   xsi:schemaLocation = "   " >   < modelVersion > 4.0.0 </ modelVersion >   < groupId > data-service </ groupId >   < artifactId > data-service </ artifactId >   < version > 1.0-SNAPSHOT </ version >   < packaging > jar </ packaging >   < name > health </ name >   < url > </ url >   < properties >       < project . build . sourceEncoding > UTF-8 </ project . build . sourceEncoding >   </ properties > </ project >

雖然,快照的情況下,Maven 在日常工作中會自動獲取最新的快照, 你也可以在任何 maven 命令中使用 -U 引數強制 maven 下載最新的快照構建。

mvn clean package -U

讓我們開啟命令控制檯,去到 C:\ > MVN > app-ui 目錄,然後執行下面的 mvn 命令。

C:\MVN\app-ui>mvn clean package -U

Maven 將在下載 data-service 最新的快照之後,開始構建專案。

[INFO] Scanning for projects...[INFO] -------------------------------------------------------------------[INFO] Building consumerBanking[INFO]    task-segment: [clean, package][INFO] -------------------------------------------------------------------[INFO] Downloading data-service:1.0-SNAPSHOT[INFO] 290K downloaded.[INFO] [clean:clean {execution: default-clean}][INFO] Deleting directory C:\MVN\app-ui\target[INFO] [resources:resources {execution: default-resources}][WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,i.e. build is platform dependent![INFO] skip non existing resourceDirectory C:\MVN\app-ui\src\main\
resources[INFO] [compiler:compile {execution: default-compile}][INFO] Compiling 1 source file to C:\MVN\app-ui\target\classes[INFO] [resources:testResources {execution: default-testResources}][WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,i.e. build is platform dependent![INFO] skip non existing resourceDirectory C:\MVN\app-ui\src\test\
resources[INFO] [compiler:testCompile {execution: default-testCompile}][INFO] Compiling 1 source file to C:\MVN\app-ui\target\test-classes[INFO] [surefire:test {execution: default-test}][INFO] Surefire report directory: C:\MVN\app-ui\target\
surefire-reports-------------------------------------------------------
 T E S T S-------------------------------------------------------Running com.companyname.bank.AppTestTests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 secResults :Tests run: 1, Failures: 0, Errors: 0, Skipped: 0[INFO] [jar:jar {execution: default-jar}][INFO] Building jar: C:\MVN\app-ui\target\
app-ui-1.0-SNAPSHOT.jar[INFO] ------------------------------------------------------------------------[INFO] BUILD SUCCESSFUL[INFO] ------------------------------------------------------------------------[INFO] Total time: 2 seconds[INFO] Finished at: Tue Jul 10 16:52:18 IST 2012[INFO] Final Memory: 16M/89M[INFO] ------------------------------------------------------------------------


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70006413/viewspace-2790902/,如需轉載,請註明出處,否則將追究法律責任。

相關文章