1. 程式人生 > >Spring Boot 構建企業級部落格學習(一)

Spring Boot 構建企業級部落格學習(一)

初始化第一個web程式

  • 使用spring initializr 構建第一個spring boot專案
  • gradle構建專案
  • Spring Boot 結構解讀

構建第一個springboot專案

輸入網址:https://start.spring.io 構建springboot專案

使用gradle構建專案

1.下載gradle

地址:http://services.gradle.org/distributions/

注意:gradle儘量使用高版本,我使用3.5.1時就遇到了外掛和gradle不相容導致構建失敗的問題。

2.配置環境變數

3.構建專案並啟動

//構建專案
gradle build
//啟動專案
java -jar 專案名稱

springboot專案結構解讀

build.gradle檔案為gradle的構建指令碼

buildscript {
    ext {//動態屬性  可使用${}  使用
        springBootVersion = '2.0.3.RELEASE'
    }
    repositories { //倉庫
        mavenCentral() //預設的中央倉庫,在國外,速度慢
    }
    dependencies {//依賴
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

group = 'com.example'
version = '0.0.1-SNAPSHOT'  //專案版本
sourceCompatibility = 1.8  //jdk版本

repositories {  //倉庫
    mavenCentral()
}


dependencies {//依賴
    compile('org.springframework.boot:spring-boot-starter-web')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

gradle資料夾的warpper可以統一專案的版本,並且如果本機為裝有gradle時可使用此檔案進行專案構建

可以在gradle-wapper.properties中修改版本