javascript
Spring Boot(一)—— Spring Boot 入门
?
整個Spring技術棧的一個大整合;
J2EE開發的一站式解決方案;
?
?
一個應用應該是一組小型服務;可以通過HTTP的方式進行互通;
單體應用:ALL IN ONE
微服務:每一個功能元素最終都是一個可獨立替換和獨立升級的軟件單元;
?
?
–jdk1.8:Spring Boot 推薦jdk1.7及以上;java version "1.8.0_102"
–maven3.x:maven 3.3以上版本;Apache Maven 3.5.3
–IntelliJIDEA2017:IntelliJ IDEA 2018.1.2 x64、STS
–SpringBoot 2.0.4.RELEASE;
?
<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進來
?
?
?
瀏覽器發送hello請求,服務器接受請求并處理,響應Hello World字符串;
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
?
若在后面的啟動中,出現如下錯誤
?
將依賴改為如下:
<parent><groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
3、編寫一個主程序;啟動Spring Boot應用
?/**
* @SpringBootApplication 來標注一個主程序類,說明這是一個Spring Boot應用
*/
5、運行主程序測試
?
<!-- 這個插件,可以將應用打包成一個可執行的jar包;-->
? ?<build>
? ? ? ?<plugins>
? ? ? ? ? ?<plugin>
? ? ? ? ? ? ? ?<groupId>org.springframework.boot</groupId>
? ? ? ? ? ? ? ?<artifactId>spring-boot-maven-plugin</artifactId>
? ? ? ? ? ?</plugin>
? ? ? ?</plugins>
? ?</build>
將這個應用打成jar包,直接使用java -jar的命令進行執行;
5、Hello World探究
?
1、父項目
<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的版本仲裁中心;
以后我們導入依賴默認是不需要寫版本;(沒有在dependencies里面管理的依賴自然需要聲明版本號)
<dependency>
? ?<groupId>org.springframework.boot</groupId>
? ?<artifactId>spring-boot-starter-web</artifactId>
</dependency>
spring-boot-starter-web:
?
Spring Boot將所有的功能場景都抽取出來,做成一個個的starters(啟動器),只需要在項目里面引入這些starter相關場景的所有依賴都會導入進來。要用什么功能就導入什么場景的啟動器
?
?
/**
* @SpringBootApplication 來標注一個主程序類,說明這是一個Spring Boot應用
*/
@SpringBootApplication: Spring Boot應用標注在某個類上說明這個類是SpringBoot的主配置類,SpringBoot就應該運行這個類的main方法來啟動SpringBoot應用;
@SpringBootConfiguration:Spring Boot的配置類;
? 標注在某個類上,表示這是一個Spring Boot的配置類;
? @Configuration:配置類上來標注這個注解;
? 配置類 ----- 配置文件;配置類也是容器中的一個組件;@Component
? 以前我們需要配置的東西,Spring Boot幫我們自動配置;@EnableAutoConfiguration告訴SpringBoot開啟自動配置功能;這樣自動配置才能生效;
? @AutoConfigurationPackage:自動配置包
? @Import(AutoConfigurationPackages.Registrar.class):
? Spring的底層注解@Import,給容器中導入一個組件;導入的組件由AutoConfigurationPackages.Registrar.class;
將主配置類(@SpringBootApplication標注的類)的所在包及下面所有子包里面的所有組件掃描到Spring容器;
? @Import(EnableAutoConfigurationImportSelector.class);
? 給容器中導入組件?
? EnableAutoConfigurationImportSelector:導入哪些組件的選擇器;
? 將所有需要導入的組件以全類名的方式返回;這些組件就會被添加到容器中;
?
? SpringFactoriesLoader.loadFactoryNames(EnableAutoConfiguration.class,classLoader);
?
Spring Boot在啟動的時候從類路徑下的META-INF/spring.factories中獲取EnableAutoConfiguration指定的值,將這些值作為自動配置類導入到容器中,自動配置類就生效,幫我們進行自動配置工作;以前我們需要自己配置的東西,自動配置類都幫我們;
J2EE的整體整合解決方案和自動配置都在spring-boot-autoconfigure-1.5.9.RELEASE.jar;
?
?
?
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應用的配置文件;可以修改一些默認設置;
-
轉載于:https://www.cnblogs.com/wffrzh/p/9459501.html
總結
以上是生活随笔為你收集整理的Spring Boot(一)—— Spring Boot 入门的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: BZOJ4543 POI2014 Hot
- 下一篇: 【Python3.6】之在Windows