一、Spring Boot 入門 1、Hello World探究 1、POM文件 1、父項目 Spring Boot 版本仲裁中心: 以後我們導入依賴預設是不需要寫版本:(沒有在dependencies裡面管理的依賴自然需要寫版本號) 2、啟動器 spring-boot-starter-web: S ...
1、Hello World探究
1、POM文件
1、父項目
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
他的父項目是
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath>../../spring-boot-dependencies</relativePath>
</parent>
他來真正管理Spring Boot 應用裡面的所有依賴版本:
Spring Boot 版本仲裁中心:
以後我們導入依賴預設是不需要寫版本:(沒有在dependencies裡面管理的依賴自然需要寫版本號)
2、啟動器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
spring-boot-starter-web: Spring Boot 場景啟動器幫我們導入了Web模塊正常運行所依賴的組件;
Spring Boot 將所有相關場景都抽取出來,做成一個個的starters(啟動器),只需要在項目裡面引入這些starters相關場景的所有依賴都會導入進來。要用什麼功能就導入什麼場景的啟動器
2、主程式類、註入口類
/*
* @SpringBootApplication 來標註一個主程式類,說明這是一個Spring Boot 應用
*/
@SpringBootApplication :Spring Boot 應用標註在某個類上說明這個類是SpringBoot的主配置類,
SpringBoot就應該運行這個類的main方法來啟動SpringBoot應用;
@SpringBootConfiguration:Spring Boot 的配置類;
標註在某個類上,表示這是一個Spring Boot 的配置類;
@Configuration:配置類上來標註這個註解;
配置類-------配置文件:配置類也是容器中的一個組件;@Component
@EnableAutoConfiguration:開啟自動配置功能;
以前我們需要配置的東西,spring Boot 幫我們自動配置;@EnableAutoConfiguration
告訴Spring Boot 開啟自動配置功能;這樣自動配置才能生效;
@AutoConfigurationPackage:自動配置包
@Import(AutoConfigurationPackages.Registrar.class);
spring的底層註解@import,給容器中導入一個組件;導入的組件由
AutoConfigurationPackages.Registrar.class
==將主配置類(@SpringBootApplication標註的類)的所在包及下麵所有子包裡面的所有組件掃描到Spring容器;==
@Import(AutoConfigurationImportSelector.class)
給容器中導入組件?
AutoConfigurationImportSelector:導入哪些組件的選擇器;
將所有需要導入的組件以全類名的方式返回;這些組件就會被添加到容器中;
會給容器中導入非常多的自動配置類(xxxAutoConfiguration);就是給容器中導入這個場景所需要的所有組件,並配置好這些組件
有了自動配置類,免去了我們手動編寫配置註入功能組件等的工作;
SpringFactoriesLoader.loadFactoryNames(EnableAutoConfiguration.class,classLoader);
==SpringBoot再啟動的時候從類路徑下的META-INF/spring.factories中獲取EnableAutoConfiguration指定的值,將這些值作為自動配置類導入到容器中,自動配置類就生效,幫我們進行自動配置工作;==;以前我們需要自己配置的東西,自動配置類都幫我們;
J2EE的整體整合解決方案和自動配置都在spring-boot-autoconfigure-2.0.5.RELEASE.jar;
2、使用Spring Initializer快速創建SpringBoot項目
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 應用的配置文件;可以修改一些預設配置;
-
二、 配置文件
1、配置文件
Spring Boot 使用一個全局的配置文件,配置文件名是固定的;
-
application.properties
-
application.yml
配置文件的作用:修改SpringBoot自動配置的預設值;SpringBoot再底層都給我們自動配置好;
YAML(YAML Ain't Markup language)
YAML A Markup Language ;是一個標記語言;
YAML isn't Markup Language; 不是一個標記語言 ;
標記語言:
以前的配置文件;大多使用的都是xxx.xml文件;
YAML:以數據為中心,比json、xml等更適合做配置文件;
YAML:配置例子
server:
port: 8090
XML:
<server>
<port>8081</port>
</server>
2、YAML語法
1、基本語法
k:(空格)v:表示一對鍵值對(空格必須有);
以空格縮進來控制層級關係:只要是左對齊的一列數據,都是一個層級的
server
屬性和值也是大小寫敏感的;
2、值的寫法
字面量:普通的值(數學,字元串,布爾)
K:V :字面直接來寫;
字元串預設不用加上單引號和雙引號;
“ ”: 雙引號 ;不會轉義字元串裡面的特殊字元;特殊字元會作為本身想表示的意思
name: "zhangsan \n lisi ":輸出:zhangsan 換行 lisi
‘ ’ :單引號;會轉義特殊字元,特殊字元最終只是一個普通的字元串數據
name: ‘zhangsan \n lisi ’ :輸出:zhangsan \n lisi
對象、Map(屬性和值)(鍵值對)
K:V:在下一行來寫對象的屬性和值的關係;註意縮進
對象還是K:V 的方式
friends:
lastName:zhangsan
age :20
行內寫法:
friends:{lastName
數組(List、Set)
用-值表示數組中的一個元素
pets
行內寫法
pets:
3、配置文件值註入
配置文件
person
javaBean:
/*
*將配置文件中配置的每一個屬性的值,映射到這個組件中
*@ConfigurationProperties:告訴springBoot將本類中的所有屬性和配置文件中相關配置進行綁定;
* prefix = "person"配置文件中哪個下麵的所有屬性進行一一映射
* 只有這個組件是容器中的組件,才能使用容器提供的@ConfigurationProperties功能;
*/
我們可以導入配置文件處理器,以後編寫配置文件就有提示了
<!--導入配置文件處理器,配置文件進行綁定就會有提示 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
1、properties配置文件在idea中預設UTF-8可能會亂碼
2、@value獲取值和@ConfigurationProperties獲取值比較
@CONFIGURATIONPROPERTIES | @VALUE | |
---|---|---|
功能 | 批量註入配置文件中的屬性 | 一個一個指定 |
鬆散綁定(鬆散語法) | 支持 | 不支持 |
SpEL(表達式計算) | 不支持 | 支持 |
JSR303數據校驗 | 支持 | 不支持 |
複雜類型封裝 | 支持 | 不支持 |
配置文件yml還是properties他們都能獲取到值;
如果說,我們只是在某和業務邏輯中需要獲取一下配置文件的某項值,使用@Value
如果說我們專門編寫了一個javabean來和配置文件進行映射,我們就直接使用@ConfigurationProperties;
3、配置文件註入值數據校驗
4、@PropertySource&@importResource
@PropertySoure:載入指定的配置文件
/*
*將配置文件中配置的每一個屬性的值,映射到這個組件中
*@ConfigurationProperties:告訴springBoot將本類中的所有屬性和配置文件中相關配置進行綁定;
* prefix = "person"配置文件中哪個下麵的所有屬性進行一一映射
* 預設從全局配置文件中獲取值;
* 只有這個組件是容器中的組件,才能使用容器提供的@ConfigurationProperties功能;
*/
@importResource:導入Spring的配置文件,讓配置文件裡面的內容生效;
Spring Boot 裡面沒有Spring的配置文件,我們自己編寫的配置文件,也不能自動識別;想讓Spring的配置文件生效,載入進來;@ImportResource 標註在一個配置類上
不來編寫配置Spring配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="helloService" class="org.wl.springboot.service.HelloService"></bean>
</beans>
SpringBoot 推薦給容器中添加組件的方式;
1、配置類=========Spring配置文件
2、使用@Bean給容器中添加組件
/*
* @Configuration:指明當前類是一個配置文件;就是來替代之前的Spring配置文件
*在配置文件中用<bean></bean>標簽添加組件
*
* */
4、配置文件占位符
1、隨機數
${random.uuid} ${random.int} ${random.long}
${random.int(10)} ${random.int[1024,65536]
2、占位符獲取之前配置的值,如果沒有可以是用:指定預設值
person
5、Profile
1、多Profile文件
我們在主配置文件編寫的時候,文件名可以是application-{profile}.properties/yml
預設使用application.properties的配置;
2、yml支持多文檔塊方式
server
3、激活指定profile
1、在配置文件中指定Spring.properties.active =dev
2、命令行:
java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev
可以直接在測試的時候,配置傳入命令行參數
3、 虛擬機參數:
-Dspring.profile.active=dev
6、配置文件載入位置
SpringBoot 啟動會掃描一下位置的application.properties或者application.yml文件作為Spring Boot 的預設配置
文件
-file:/config/
-file:/
-classpath:/config/
-classpath:/
優先順序由高到低,高優先順序的配置會覆蓋低優先順序的配置;
SpringBoot會從這四個位置全部載入主配置文件;互補配置
==spring-boot配置文件中server.context-path=/XXXXXXX不起作用:==
==原因是更新後寫法變成了`server.servlet.context-path=/XXXXXX,這樣寫即可==
==我們還可以通過spring.config.location來改變預設的配置文件位置==
項目打包好以後,我們可以使用命令行參數的形式,啟動項目的時候來指定配置文件的新位置;指定配置文件和預設載入的這些配置文件共同起作用形成互補配置
java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar --spring.config.location=C:\Users\80481\Desktop\application.properties
7、外部配置載入順序
SpringBoot也可以從以下位置載入配置:按照優先順序從高到低;高優先順序的配置覆蓋低優先順序的配置,所有配置會形成互補配置
-
命令行參數
-
所有的配置都可以在命令行上進行指定;
-
多個配置用空格分開; –配置項=值
java -jar spring-boot-02-config-02-0.0.1-SNAPSHOT.jar
--server.port=8087 --server.context-path=/abc
12342.來自java:comp/env的JNDI屬性 3.Java系統屬性(System.getProperties()) 4.操作系統環境變數 5.RandomValuePropertySource配置的random.*屬性值
6.jar包外部的application-{profile}.properties或application.yml(帶spring.profile)配置文件 7.jar包內部的application-{profile}.properties或application.yml(帶spring.profile)配置文件 8.jar包外部的application.properties或application.yml(不帶spring.profile)配置文件 9.jar包內部的application.properties或application.yml(不帶spring.profile)配置文件
由jar包外向jar包內進行尋找,優先載入待profile的,再載入不帶profile的。1
10.@Configuration註解類上的@PropertySource 11.通過SpringApplication.setDefaultProperties指定的預設屬性
所有的配置載入來源;
-
8、自動配置原理
配置文件到底能寫什麼?怎麼寫?自動配置原理;
1、自動配置原理
1)、SpringBoot啟動的時候載入主配置類,開啟了自動配置功能==@EnableAutoConfiguration==
2)、@EnableAutoConfiguration作用:
-
利用AutoConfigurationImportSelector給容器中導入了一些組件?
-
-
可以查看selectImports()方法的內容;
-
-
List<String> configurations = getCandidateConfigurations(annotationMetadata, attributes);獲取候選的配置
-
SpringFactoriesLoader.loadFactoryNames()
掃描所有jar包路徑下的META-INF/spring.factories
把掃描到的這些文件的內容包裝成properties對象
從properties中獲取到EnableAutoConfiguration.class類(類名)對應的值,然後把他們添加在容器中
==將類路徑下 META-INF/spring.factories裡面配置的所有EnableAutoConfiguration的值加入到了容器中==
-
# Auto Configure
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,\
org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,\
org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration,\
org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration,\
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration,\
org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration,\
org.springframework.boot.autoconfigure.cloud.CloudAutoConfiguration,\
org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,\
org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,\
org.springframework.boot.autoconfigure.couchbase.CouchbaseAutoConfiguration,\
org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration,\
org.springframework.boot.autoconfigure.data.cassandra.CassandraDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.cassandra.CassandraRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration,\
org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.ldap.LdapDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.ldap.LdapRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.mongo.MongoRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration,\
org.springframework.boot.autoconfigure.data.neo4j.Neo4jRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.solr.SolrRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisReactiveAutoConfiguration,\
org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration,\
org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration,\
org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration,\
org.springframework.boot.autoconfigure.elasticsearch.jest.JestAutoConfiguration,\
org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration,\
org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration,\
org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration,\
org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration,\
org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration,\
org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration,\
org.springframework.boot.autoconfigure.hazelcast.HazelcastJpaDependencyAutoConfiguration,\
org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,\
org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration,\
org.springframework.boot.autoconfigure.influx.InfluxDbAutoConfiguration,\
org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,\
org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration,\
org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.JndiDataSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.XADataSourceAutoConfiguration,\
org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration,\
org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration,\
org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration,\
org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration,\
org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration,\
org.springframework.boot.autoconfigure.jooq.JooqAutoConfiguration,\
org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration,\
org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration,\
org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapAutoConfiguration,\
org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration,\
org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration,\
org.springframework.boot.autoconfigure.mail.MailSenderAutoConfiguration,\
org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration,\
org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration,\
org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration,\
org.springframework.boot.autoconfigure.mongo.MongoReactiveAutoConfiguration,\
org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration,\
org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,\
org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration,\
org.springframework.boot.autoconfigure.reactor.core.ReactorCoreAutoConfiguration,\
org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration,\
org.springframework.boot.autoconfigure.security.servlet.SecurityRequestMatcherProviderAutoConfiguration,\
org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration,\
org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration,\
org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration,\
org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration,\
org.springframework.boot.autoconfigure.sendgrid.SendGridAutoConfiguration,\
org.springframework.boot.autoconfigure.session.SessionAutoConfiguration,\
org.springframework.boot.autoconfigure.security.oauth2.client.OAuth2ClientAutoConfiguration,\
org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration,\
org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration,\
org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration,\
org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration,\
org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,\
org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,\
org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.HttpHandlerAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.error.ErrorWebFluxAutoConfiguration,\
org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,\
org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration,\
org.springframework.boot.autoconfigure.websocket.reactive.WebSocketReactiveAutoConfiguration,\
org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,\
org.springframework.boot.autoconfigure.websocket.servlet.WebSocketMessagingAutoConfiguration,\
org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration
# Failure analyzers
org.springframework.boot.diagnostics.FailureAnalyzer=\
org.springframework.boot.autoconfigure.diagnostics.analyzer.NoSuchBeanDefinitionFailureAnalyzer,\
org.springframework.boot.autoconfigure.jdbc.DataSourceBeanCreationFailureAnalyzer,\
org.springframework.boot.autoconfigure.jdbc.HikariDriverConfigurationFailureAnalyzer,\
org.springframework.boot.autoconfigure.session.NonUniqueSessionRepositoryFailureAnalyzer
# Template availability providers
org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider=\