SpringBoot文件之入門的閱讀筆記

jackieathome發表於2024-08-18
  • Overview

  • Documentation

  • Requirements
    Spring Boot 3.3.2需要配套Java 17及以上的版本使用。

  • Installing

  • Upgrading
    對於使用1.X版本的專案,升級至當前的2.X及3.X版本時,需要詳細閱讀遷移指導

    升級SpringBoot版本後,元件的配置屬性可能發生變化,透過閱讀文件來比較差異費時費力,非常考驗耐心。SprintBoot官方提供了元件spring-boot-properties-migrator來自動完成配置屬性的分析工作。修改pom.xml,增加如下配置,可啟用spring-boot-properties-migrator

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-properties-migrator</artifactId>
        <scope>runtime</scope>
    </dependency>
    
  • Tutorials

  • Developing Your First Spring Boot Application
    建立demo專案,專案的pom.xml,內容如下:

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.example</groupId>
        <artifactId>demo</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <java.version>17</java.version>
            <maven.compiler.source>${java.version}</maven.compiler.source>
            <maven.compiler.target>${java.version}</maven.compiler.target>
            <spring-boot-starter.version>3.3.2</spring-boot-starter.version>
        </properties>
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>${spring-boot-starter.version}</version>
        </parent>
    </project>
    

    修改maven的配置檔案settings.xml,增加國內代理的配置,如下:

    <mirrors>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <!--<mirrorOf>central</mirrorOf> -->
            <mirrorOf>*</mirrorOf>
        </mirror>
    </mirrors>
    

    使用IDEA或者eclipse,匯入上述demo專案。

    在控制檯執行命令mvn dependency:tree,檢視demo專案當前的依賴。

相關文章