本文簡介maven 專案 pom文件基本的說明。
說明分為三大項目:
1、繼承
2、依賴
3、套件
依我在生活上應用來配合說明。
我「繼承」父母的一些基因特徵。
需「依賴」食衣住行醫藥育樂等來生活,
依「套件」工具來提升生活品質。
回到Spring Boot
專案文件使用的
一、繼承 spring-boot-starter-parent
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.3</version>
<relativePath/>
</parent>
圖一 如果要使用SpringBoot 就要繼承 spring-boot-starter-parent
二、依賴 spring-boot-starter-xxxxxxx
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependencies>
依賴相關的 需放入此區
</dependencies>
圖二 依專案的需求,來依賴
例如 spring-boot-starter-web,就是 web 開發相關的啟動器
官網文件上,還有很多啟動器可參考
三、套件工具 spring-boot-maven-plugin
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.6.3</version>
</plugin>
</plugins>
</build>
圖三 build 使用 maven套件
使用工具來管理所需要的jar及專案產生jar檔工具
用LINE傳送分享
其它文章
沒有留言:
張貼留言