您好,登錄后才能下訂單哦!
本篇內容介紹了“springboot多模塊開發并使用dependencyManagement管理”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
當我們新建一個springboot項目時,pom.xml中會有一個parent
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.2</version> <relativePath/> <!-- lookup parent from repository --> </parent>
這是我們常見的一個,其實還有另外一種使用方式,具體可參考官方文檔
<dependencyManagement> <dependencies> <dependency> <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.4.4</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
這種方式在多模塊開發中用的比較多,使用dependencyManagement,它的 type 是 pom,scope 是 import,這種類型的 dependency 只能在 dependencyManagement 標簽中聲明,然后在子模塊中使用dependency引用即可。并且這樣能做到,在哪個模塊中需要哪個就用哪個,不需要不引用即可。不會全部導入。
點擊:spring-boot-starter-parent會發現他里面又有一個parent,而這個parent和我們上面那種import的竟然是完全一樣的
最終都會spring-boot-dependencies里面
“springboot多模塊開發并使用dependencyManagement管理”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。