1. 程式人生 > 實用技巧 >一、SpringBoot入門篇

一、SpringBoot入門篇


一、SpringBoot 簡介

1、背景
  • J2EE 笨重的開發。
  • 繁多的配置。
  • 低下的開發效率。
  • 複雜的部署流程。
  • 第三方技術整合難度大。
2、解決
  • Spring Boot J2EE一站式解決方案。
  • Spring Cloud 分散式整體解決方案。
  • Spring 全家桶。
3、優點
  • 快速建立獨立執行的 Spring 專案以及與主流框架整合。
  • 使用嵌入式的 Servlet 容器,應用無需打成 WAR 包。
  • starters 自動依賴與版本控制。
  • 大量的自動配置,簡化開發,也可修改預設值。
  • 無需配置 XML,無程式碼生成,開箱即用。
  • 準生產環境的執行時應用監控。
  • 與雲端計算的天然整合。

二、微服務 簡介

1、單體應用


cd9c2f880ad8c5df3658750ca3509563.png

2、微服務

一個應用應該是一組小型服務;可以通過HTTP的方式進行互通;
每一個功能元素最終都是一個可獨立替換和獨立升級的軟體單元;
詳細參照微服務文件


92d6ec0719e255cfba6018e23425dc59.png


三、環境準備

1、使用 Springboot 的前提要求
  • Spring 、SpringMvc 框架的使用經驗。
  • 熟練使用 Maven 專案構建和依賴管理。
  • 熟練使用 Eclipse 或者 IDEA。
2、環境約束
  • jdk1.8。
  • maven3.x。
  • IntelliJ IDEA 2017 或者更高版本。
  • Spring Boot 1.5.9.RELEASE 或者更高版本(高版本使用時有些許差別)。

四、SpringBoot HelloWorld

功能:瀏覽器傳送 hello 請求,伺服器接受請求並處理,響應Hello World字串。

  • 1、MAVEN 設定

給maven 的settings.xml配置檔案的profiles標籤新增。

<profile>
  <id>jdk-1.8</id>
  <activation>
    <activeByDefault>true</activeByDefault>
    <jdk>1.8</jdk>
  </activation>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  </properties>
</profile>
  • 2、IDEA 設定

整合maven進來。


54e138375f1acfbed2f406dd695f86de.png

  • 3、建立 Maven 工程 並匯入相關依賴。
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>
  • 4、編寫一個主程式;啟動Spring Boot應用。
/**
 *  @SpringBootApplication 來標註一個主程式類,說明這是一個Spring Boot應用
 */
@SpringBootApplication
public class HelloWorldMainApplication {

    public static void main(String[] args) {

        // Spring應用啟動起來
        SpringApplication.run(HelloWorldMainApplication.class,args);
    }
}
  • 5、 編寫相關的Controller、Service。
@Controller
public class HelloController {

    @ResponseBody
    @RequestMapping("/hello")
    public String hello(){
        return "Hello World!";
    }
}
  • 6、執行主程式測試。END

還可將應用打包成一個可執行的jar包。將這個應用打成jar包,直接使用java -jar的命令進行執行; 需加入以下配置。

 <!-- 這個外掛,可以將應用打包成一個可執行的jar包;-->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

五、SpringBoot 場景啟動器

5.1、pom.xml 檔案
  • 父專案
<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-starter:spring-boot 場景啟動器;幫我們匯入了 web 模組正常執行所依賴的元件。
-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

Spring Boot 將所有的功能場景都抽取出來,做成一個個的 starters(啟動器),只需要在專案裡面引入這些 starter 相關場景的所有依賴都會匯入進來。要用什麼功能就匯入什麼場景的啟動器。


六、使用嚮導快速建立 SpringBoot 應用

6.1、IDEA:使用 Spring Initializer 快速建立專案

IDE 都支援使用 Spring 的專案建立嚮導快速建立一個 Spring Boot 專案;

選擇我們需要的模組;嚮導會聯網建立 Spring Boot 專案;

預設生成的 Spring Boot 專案;

  • 主程式已經生成好了,我們只需要我們自己的邏輯
  • resources 資料夾中目錄結構
    • static:儲存所有的靜態資源; js css images;
    • templates:儲存所有的模板頁面;(Spring Boot 預設 jar 包使用嵌入式的Tomcat,預設不支援 JSP 頁面);可以使用模板引擎(freemarker、thymeleaf);
    • application.properties:Spring Boot 應用的配置檔案;可以修改一些預設設定;
6.2、STS 使用 Spring Starter Project 快速建立專案(eclipse)

=一、SpringBoot入門篇.md