1.Springboot概念及第一個SpringBoot程式
阿新 • • 發佈:2021-09-05
目錄
1.什麼是Springboot
springboot就是javaweb的開發框架,和springMVC類似,好處就是簡化開發:約定大於配置。能迅速開發web應用。
微服務: 微服務是一種架構風格,它要求我們在開發一個應用的時候,這個應用必須構建成一系列小服務的組合,可以通過http的方式進行互通。 Martin Flower 於 2014 年 3 月 25 日寫的《Microservices》,詳細的闡述了什麼是微服務。 原文地址:http://martinfowler.com/articles/microservices.html 翻譯:https://www.cnblogs.com/liuning8023/p/4493156.html 單體應用架構: 單體應用架構是指,我們將一個應用中的所有應用服務都封裝在一個應用中。 無論是ERP、CRM或是其他什麼系統,都把資料庫訪問,web訪問,等等各個功能放在一個wer包內。 單體應用架構的好處:易於開發和測試;也十分方便部署;當需要擴充套件時,只需要將war複製多份,然後放到多個伺服器上,再做個負載均衡就可以了。 單體應用架構的缺點:哪怕我要修改一個非常小的地方,我都需要停掉整個服務,重新打包、部署這個應用war包。特別是對於一個大型應用,我們不可能吧所有內容都放在一個應用裡面,我們如何維護、如何分工合作都是問題。
spring為我們帶來了構建大型分散式微服務的全套、全程產品:
構建一個個功能獨立的微服務應用單元,可以使用springboot,可以幫我們快速構建一個應用;
大型分散式網路服務的呼叫,這部分由SpringCloud來完成,實現分散式;
在分散式中間,進行流式資料計算、批處理,我們有spring cloud data flow。
spring為我們想清楚了整個從開始構建應用到大型分散式應用全流程方案。
2.第一個springboot程式
環境配置:
jdk1.8 、 maven3.6.0 、springboot最新版 、idea開發
依賴配置
- 匯入父工程座標
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.3.RELEASE</version> </parent>
如果我們想要修改SpringBoot專案的jdk版本,只需要簡單的新增以下屬性即可,如果沒有需求,則不新增。
<properties>
<java.version>1.8</java.version>
</properties>
-
新增相應啟動器
web啟動器:集成了Tomcat與web的相關配置
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
所有springboot依賴都是以:`spring-boot-starter-` 開頭,後面需要什麼依賴就寫什麼,比如web
SpringBoot將所有的功能場景都抽取出來,做成一個個的starter (啟動器),只需要在專案中引入這些starter即可,所有相關的依賴都會匯入進來 , 我們要用什麼功能就匯入什麼樣的場景啟動器即可 ;
單元測試依賴
<!--單元測試-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
打包釋出必須加的依賴
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
若有依賴需要降版本,也需要指定版本號
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.kuang</groupId>
<artifactId>springboot-01-helloworld</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot-01-helloworld</name>
<description>springboot-01-helloworld</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
<!--如上所示,主要有四個部分:
專案元資料資訊:建立時候輸入的Project Metadata部分,也就是Maven專案的基本元素,包括:groupId、artifactId、version、name、description等
parent:繼承spring-boot-starter-parent的依賴管理,控制版本與打包等內容
dependencies:專案具體依賴,這裡包含了spring-boot-starter-web用於實現HTTP介面(該依賴中包含了Spring MVC),官網對它的描述是:使用Spring MVC構建Web(包括RESTful)應用程式的入門者,使用Tomcat作為預設嵌入式容器。;
spring-boot-starter-test用於編寫單元測試的依賴包。
build:構建配置部分。預設使用了spring-boot-maven-plugin,配合spring-boot-starter-parent就可以把Spring Boot應用打包成JAR來直接執行。-->
程式配置
1.編寫啟動類
註解@SpringBootApplication表明是啟動類
2.編寫main函式:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args); // args一定要寫,否則報無法載入主類
}
}
在與啟動類同級目錄下建包:pojo、controller、service、mapper 一定要在同級目錄下,否則識別不到
3.編寫Controller
@RestController
public class HelloController {
@GetMapping("hello")
public String hello(){
return "hello, spring boot!";
}
}
@GetMapping 組合註解,是@RequestMapping(method = RequestMethod.GET)的縮寫
該註解將HTTP Get 對映到 特定的處理方法上。
即可以使用@GetMapping(value = “/hello”)來代替@RequestMapping(value=”/hello”,method= RequestMethod.GET)。即可以讓我們精簡程式碼。
@Configuration:宣告一個類作為配置類,代替xml檔案
@configuration註解內部被@component元件註解修飾,所以被@configuration修飾的類可以被ioc容器掃描,進行初始化,載入註解@PropertySource(value=”classpath:jdbc.properties”)內的外部資原始檔,
對類內的屬性進行初始化,再對@Bean註解修飾的方法間接初始化,使用已經初始化的屬性值
@Bean:宣告在方法上,將方法的返回值加入Bean容器,代替<bean>標籤
@Value:屬性注入
@value註解注入值只能注入簡單型別(普通數值、字串),不能注入物件型別。所以被放棄使用
@PropertySource(value=”classpath:jdbc.properties”):指定外部屬性檔案
springboot banner圖示:
springboot banner線上生成工具(https://www.bootschool.net/ascii)
1.複製工具中內容圖
2.resources新增banner.txt檔案,貼上內容圖