SpringBoot之基礎
簡介
背景
J2EE笨重的開發 / 繁多的配置 / 低下的開發效率 / 複雜的部署流程 / 第三方技術整合難度大
特點
① 快速建立獨立執行的spring專案以及主流框架整合
② 使用嵌入式的Servlet容器, 應用無需達成war包
③ starters自動依賴和版本控制
④ 大量自動配置, 簡化開發, 也可修改預設值
⑤ 無需配置xml檔案, 無程式碼生成, 開箱即用
⑥ 準生產環境的執行時應用監控
⑦ 與雲端計算的天然整合
微服務
推薦martinfowler的一篇部落格譯文:
微服務是一種架構風格, 一個應用應該是一組小型服務, 可以通過http的方式進行互通.
以前的架構: 單體應用(ALL IN ONE)
微服務(Microservices): 每一個服務都是可替代可升級的軟體單元
每個服務之間通過http進行通訊:
準備工作
JDK1.8
maven3.3.9
IDEA_2018
配置指定maven的全域性JDK版本: 在setting.xml檔案中的<profiles></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>
第一個例子
① 建立一個maven工程(jar)
② 匯入spring boot相關的依賴
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.idea.springboot</groupId>
<artifactId>spring-boot-01-helloworld</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<!--將應用打包成一個可執行的jar包-->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
③ 編寫一個主程式, 啟動Spring Boot應用
/**
* @Date 18/12/06/006 - 8:54
* @Desc springboot第一個例子
* @SpringBootApplication 標註一個主程式類 說明這是一個Spring Boot應用
*/
@SpringBootApplication public class HelloWorldMainApplication { public static void main(String[] args) { //spring應用啟動起來 SpringApplication.run(HelloWorldMainApplication.class, args); } }
④ 編寫相關的Controller
@Controller
public class HelloController { @ResponseBody @RequestMapping("/hello") public String hello(){ return "Hello World!"; } }
⑤ 執行主程式測試, 訪問: http://localhost:8080/hello
⑥ 簡化部署(使用外掛打成jar, 外掛在pom檔案中已給出)
探究
① pom檔案
父專案:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</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的所有依賴版本: 匯入依賴預設是不需要寫上版本的(沒有在dependencies管理中的除外)
② 匯入的依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
spring-boot-starter: Spring Boot的場景啟動器
spring-boot-starter-web: 幫我們匯入了web模組正常執行所依賴的元件
Spring Boot將所有的功能場景都抽取出來, 做成一個個的starter(啟動器), 只需要在專案中引入這些starter, 要用哪個功能就匯入具體的starter即可.
③ 主程式類/主入口類
@SpringBootApplication註解, 該註解所標準的類即為SpringBoot的主配置類
@SpringBootConfiguration
@Configuration: 配置類上的註解
@Component: 元件註解
配置類: 同配置檔案的作用, 也是容器的元件.
@EbableAutoConfiguration: 開啟自動註解功能
@AutoConfigurationPackage: 自動配置包(自動導包)
@Import({Registrar.class}): Spring的底層註解, 給容器中匯入一個元件
將主配置類(@SpringBootApplication標註的類)的所在包及下面所有子包的所有元件都掃描到容器中
@Import({ AutoConfigurationImportSelector.class}): 匯入具體元件的選擇器
將所有需要匯入的元件以全類名的方式返回, 這些元件就會被新增到容器中.
會給容器中匯入非常多的自動配置類(xxxAutoConfiguration): 給容器中匯入這個場景需要元件並配置好這些元件.
有了自動配置類, 免去了手動編寫配置注入功能元件的工作.
SpringFactoriesLoader.loadFactoryNames(EnableAutoConfiguration.class, ClassLoader);
該方法從檔案"META-INF/spring.factories"中獲取自動配置的類資訊.
小結: SpringBoot在啟動時從類路徑下的META-INF/spring.factories中獲取EnableAutoConfiguration指定的值, 將這些值作為自動配置類匯入到容器中, 自動配置類就會生效, 進行自動配置工作, 所以並不是不需要進行以前的配置, 只是這些配置都由SpringBoot幫我們完成了. J2EE的整體整合解決方案和自動配置都在spring-boot-autoconfigure-1.5.9.RELEASE.jar
使用Spring Initializr快速建立SpringBoot專案(需要聯網)
① 選擇Spring Initializr
② 填寫資訊
③ 需要哪個模組勾選哪個即可
④ next->finish
⑤ resources資料夾中的目錄結構
static資料夾: 儲存所有的靜態資源(js, css...);
templates資料夾: 儲存所有的模板頁面(由於SpringBoot使用嵌入式的tomcat, 所以預設不支援jsp), 可以使用模板引擎 (freemarker/ thymeleaf)
application.properties: SpringBoot應用的配置檔案(可以修改一些預設的設定)