<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
關於 SpringBoot
的自動裝配功能,相信是每一個 Java
程式設計師天天都會用到的一個功能,但是它究竟是如何實現的呢?今天阿粉來帶大家看一下。
首先我們通過一個案例來看一下自動裝配的效果,建立一個 SpringBoot
的專案,在 pom
檔案中加入下面的依賴。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
其中 web
的依賴表示我們這是一個 web
專案,redis
的依賴就是我們這邊是要驗證的功能依賴。隨後在 application.properties
組態檔中增加 redis
的相關設定如下
spring.redis.host=localhost spring.redis.port=6379 spring.redis.password=123456
再編寫一個 Controller
和 Service
類,相關程式碼如下。
package com.example.demo.controller; import com.example.demo.service.HelloService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @Autowired private HelloService helloService; @GetMapping(value = "/hello") public String hello(@RequestParam("name"){ return helloService.sayHello(name); } }
service 程式碼如下:
package com.example.demo.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; @Service public class HelloService { @Autowired RedisTemplate<String, String> redisTemplate; public String sayHello(String name){ String result = doSomething(name); redisTemplate.opsForValue().set("name", result); result = redisTemplate.opsForValue().get("name"); return "hello: " + result; } private String doSomething(String name){ return name + " 歡迎關注 Java 極客技術"; } }
啟動專案,然後我們通過存取 http://127.0.0.1:8080/hello?name=ziyou,可以看到正常存取。接下來我們再通過 Redis
的使用者端,去觀察一下資料是否正確的寫入到 Redis
中,效果跟我們想象的一致。
看到這裡很多小夥伴就會說,這個寫法我天天都在使用,用起來是真的爽。雖然用起來是很爽,但是大家有沒有想過一個問題,那就是在我們的 HelloService
中通過 @Autowired
注入了一個 RedisTemplate
類,但是我們的程式碼中並沒有寫過這個類,也沒有使用類似於@RestControlle
r,@Service
這樣的註解將 RedisTemplate
注入到 Spring IoC
容器中,那為什麼我們就可以通過 @Autowired
註解從 IoC
容器中獲取到 RedisTemplate
首先我們看下專案的啟動類:
package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; @SpringBootApplication @ComponentScan(value = "com.example.demo.*") public class DemoApplication { public static void main(String[] args){ SpringApplication.run(DemoApplication.class, args); } }
在啟動類上面有一個 @SpringBootApplication
註解,我們點進去可以看到如下內容:
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootConfiguration @EnableAutoConfiguration @ComponentScan( excludeFilters = {@Filter( type = FilterType.CUSTOM, classes = {TypeExcludeFilter.class} ), @Filter( type = FilterType.CUSTOM, classes = {AutoConfigurationExcludeFilter.class} )} ) public @interface SpringBootApplication { // 省略 }
在這個註解中,其中有一個 @EnableAutoConfiguration
註解,正是因為有了這樣一個註解,我們才得以實現自動裝配的功能。繼續往下面看。
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @AutoConfigurationPackage @Import({AutoConfigurationImportSelector.class}) public @interface EnableAutoConfiguration { String ENABLED_OVERRIDE_PROPERTY = "spring.boot.enableautoconfiguration"; Class<?>[] exclude() default {}; String[] excludeName() default {}; }
可以看到 @EnableAutoConfiguration 註解中有一個 @Import({AutoConfigurationImportSelector.class}),匯入了一個 AutoConfigurationImportSelector 類,該類間接實現了 ImportSelector 介面,實現了一個 String[] selectImports(AnnotationMetadata importingClassMetadata); 方法,這個方法的返回值是一個字串陣列,對應的是一系列主要注入到 Spring IoC
容器中的類名。當在 @Import
中匯入一個 ImportSelector
的實現類之後,會把該實現類中返回的 Class
名稱都裝載到 IoC
容器中。
一旦被裝載到 IoC
容器中過後,我們在後續就可以通過 @Autowired
來進行使用了。接下來我們看下 selectImports
方法裡面的實現,當中參照了 getCandidateConfigurations
方法 ,其中的 ImportCandidates.load 方法我們可以看到是通過載入 String location = String.format("META-INF/spring/%s.imports", annotation.getName()); 對應路徑下的 org.springframework.boot.autoconfigure.AutoConfiguration.imports 檔案,其中就包含了很多自動裝配的設定類。
protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes){ List<String> configurations = new ArrayList(SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader())); ImportCandidates.load(AutoConfiguration.class, this.getBeanClassLoader()).forEach(configurations::add); Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories nor in META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports. If you are using a custom packaging, make sure that file is correct."); return configurations; }
我們可以看到這個檔案中有一個 RedisAutoConfiguration
設定類,在這個設定中就有我們需要的 RedisTemplate
類的 Bean
,同時也可以看到,在類上面有一個 @ConditionalOnClass({RedisOperations.class})
註解,表示只要在類路徑上有 RedisOperations.class
這個類的時候才會進行範例化。這也就是為什麼只要我們新增了依賴,就可以自動裝配的原因。
通過 org.springframework.boot.autoconfigure.AutoConfiguration.imports
這個檔案,我們可以看到有很多官方幫我們實現好了設定類,這些功能只要我們在 pom
檔案中新增對應的 starter
依賴,然後做一些簡單的設定就可以直接使用。
其中本質上自動裝配的原理很簡單,本質上都需要實現一個設定類,只不過這個設定類是官方幫我們建立好了,再加了一些條件類註解,讓對應的範例化只發生類類路徑存在某些類的時候才會觸發。這個設定類跟我們平常自己通過 JavaConfig
形式編寫的設定類沒有本質的區別。
從上面的分析我們就可以看的出來,之所以很多時候我們使用 SpringBoot
是如此的簡單,全都是依賴約定優於設定的思想,很多複雜的邏輯,在框架底層都幫我們做了預設的實現。雖然用起來很爽,但是很多時候會讓程式設計師不懂原理,我們需要做的不僅是會使用,而更要知道底層的邏輯,才能走的更遠。
基於上面的分析,我們還可以知道,如果我們要實現一個自己的 starter
其實也很簡單,只要安裝上面的約定,編寫我們自己的設定類和組態檔即可。後面的文章阿粉會帶你手寫一個自己的 starter
來具體實現一下。
到此這篇關於SpringBoot 自動裝配的原理詳解分析的文章就介紹到這了,更多相關SpringBoot 自動裝配 內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45