Hello World探究

xieyfjejwaj發表於2020-10-25

1、POM檔案

1、父專案

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.9.RELEASE</version>
    </parent>

他的父專案是
<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies/artifactId>
        <version>1.5.9.RELEASE</version>
        <relativePath>../../spring-boot-dependencies</relativePath>
    </parent>
他來真正管理Spring Boot應用裡面的所有版本

Spring Boot的版本仲裁中心
以後我們匯入專案預設是不需要寫版本(在沒有dependcies裡面管理的依賴自然需要宣告版本號)

2、

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>