本章將介紹如何在Spring Boot應用程式上執行引導。
引導Spring Boot應用程式的一種方法是使用Spring Initializer。 為此需要存取Spring Initializer 網頁 www.start.spring.io 並選擇 Build,Spring Boot版本和平台。 此外還需要提供組,工件和所需的依賴項來執行應用程式。
請注意以下螢幕截圖,其中顯示了新增spring-boot-starter-web
依賴項以編寫REST端點的範例。
提供組,工件,依賴關係,構建專案,平台和版本後,單擊「Generate Project」按鈕。 將下載zip檔案並提取檔案。
本節通過使用Maven和Gradle解釋了這些範例。
下載專案後,解壓縮檔案。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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yiibai</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
下載專案後,解壓縮檔案。build.gradle 檔案的內容如下所示 -
buildscript {
ext {
springBootVersion = '1.5.8.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.yiibai'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
Spring Boot提供了許多Starters來在類路徑中新增jar
。 例如,要編寫Rest Endpoint,需要在類路徑中新增spring-boot-starter-web
依賴項。請遵守下面顯示的程式碼以便更好地理解 -
Maven依賴
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
Gradle依賴
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
}
Main方法應該是編寫Spring Boot Application類。 該類應使用@SpringBootApplication
進行注釋。這是啟動Spring啟動應用程式的入口點。以在src/java/main
目錄下找到主類檔案。
在此範例中,主類檔案位於src/java/main
目錄中,其預設包為com.yiibai.demo
。 請觀察此處顯示的程式碼以便更好地理解 -
package com.yiibai.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
要在Spring Boot Application主類檔案本身中編寫一個簡單的Hello World Rest 端點,請按照以下步驟操作 -
@RestController
注釋。@RequestMapping
注釋編寫Request URI方法。Hello World
字串。package com.yiibai.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RequestMapping(value = "/")
public String hello() {
return "Hello World";
}
}
建立一個可執行的JAR檔案,在命令提示字元下使用Maven和Gradle命令執行Spring Boot應用程式,如下所示 -
使用maven命令mvn clean install
,如下所示 -
執行命令後,可以在命令提示字元下看到 BUILD SUCCESS 的訊息,如下所示 -
使用Gradle命令gradle clean build
,如下所示 -
執行命令後,可以在命令提示字元中看到BUILD SUCCESSFUL 訊息,如下所示 -
建立可執行JAR檔案後,可以在以下目錄中找到它。對於Maven,可以在目標目錄下找到JAR檔案,如下所示 -
對於Gradle,可以在build/libs
目錄下找到JAR檔案,如下所示 -
現在,使用命令java -jar <JARFILE>
執行JAR檔案。 請注意,在上面的範例中,JAR檔案名為demo-0.0.1-SNAPSHOT.jar
:
執行jar檔案後,可以在控制台視窗中看到輸出,如下所示 -
現在,看一下控制台,Tomcat在埠8080(http)上啟動。 現在,轉到Web瀏覽器並點選URL => http://localhost:8080/
,可以看到如下所示的輸出 -