<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
首先了解一些SpringBoot的底層註解,是如何完成相關的功能的
@Configuration 告訴SpringBoot被標註的類是一個設定類,以前Spring xxx.xml能設定的內容,它都可以做,spring中的Bean元件預設是單範例的
#############################Configuration使用範例###################################################### /** * 1、設定類裡面使用@Bean標註在方法上給容器註冊元件,預設也是單範例的 * 2、設定類本身也是元件 * 3、proxyBeanMethods:代理bean的方法 * Full(proxyBeanMethods = true)、【保證每個@Bean方法被呼叫多少次返回的元件都是單範例的】 * Lite(proxyBeanMethods = false)【每個@Bean方法被呼叫多少次返回的元件都是新建立的】 * 元件依賴必須使用Full模式預設。其他預設是否Lite模式 * * * */ @Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 public class MyConfig { /** * Full:外部無論對設定類中的這個元件註冊方法呼叫多少次獲取的都是之前註冊容器中的單範例物件 * @return */ @Bean //給容器中新增元件。以方法名作為元件的id。返回型別就是元件型別。返回的值,就是元件在容器中的範例 public User user01(){ User zhangsan = new User("zhangsan", 18); //user元件依賴了Pet元件 zhangsan.setPet(tomcatPet()); return zhangsan; } @Bean("tom") public Pet tomcatPet(){ return new Pet("tomcat"); } } ################################@Configuration測試程式碼如下######################################## @SpringBootConfiguration @EnableAutoConfiguration @ComponentScan("com.atguigu.boot") public class MainApplication { public static void main(String[] args) { //1、返回我們IOC容器 ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args); //2、檢視容器裡面的元件 String[] names = run.getBeanDefinitionNames(); for (String name : names) { System.out.println(name); } //3、從容器中獲取元件 Pet tom01 = run.getBean("tom", Pet.class); Pet tom02 = run.getBean("tom", Pet.class); System.out.println("元件:"+(tom01 == tom02)); //4、com.atguigu.boot.config.MyConfig$$EnhancerBySpringCGLIB$$51f1e1ca@1654a892 MyConfig bean = run.getBean(MyConfig.class); System.out.println(bean); //如果@Configuration(proxyBeanMethods = true)代理物件呼叫方法。SpringBoot總會檢查這個元件是否在容器中有。 //保持元件單範例 User user = bean.user01(); User user1 = bean.user01(); System.out.println(user == user1); User user01 = run.getBean("user01", User.class); Pet tom = run.getBean("tom", Pet.class); System.out.println("使用者的寵物:"+(user01.getPet() == tom)); } }
@Import註解詳解,將指定元件匯入到容器中
* 4、@Import({User.class, DBHelper.class}) * 給容器中自動建立出這兩個型別的元件、預設元件的名字就是全類名 * * * */ @Import({User.class, DBHelper.class}) @Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 public class MyConfig { }
@Conditional註解詳解,條件裝配,必須滿足Conditional指定的條件,才會繼續元件的注入
以上是所有Conditional的實現註解
@ConditionalOnBean(name = "tom") 容器中有tom元件,才會進行元件的注入
=====================測試條件裝配========================== @Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 //@ConditionalOnBean(name = "tom") @ConditionalOnMissingBean(name = "tom") public class MyConfig { /** * Full:外部無論對設定類中的這個元件註冊方法呼叫多少次獲取的都是之前註冊容器中的單範例物件 * @return */ @Bean //給容器中新增元件。以方法名作為元件的id。返回型別就是元件型別。返回的值,就是元件在容器中的範例 public User user01(){ User zhangsan = new User("zhangsan", 18); //user元件依賴了Pet元件 zhangsan.setPet(tomcatPet()); return zhangsan; } @Bean("tom22") public Pet tomcatPet(){ return new Pet("tomcat"); } } public static void main(String[] args) { //1、返回我們IOC容器 ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args); //2、檢視容器裡面的元件 String[] names = run.getBeanDefinitionNames(); for (String name : names) { System.out.println(name); } boolean tom = run.containsBean("tom"); System.out.println("容器中Tom元件:"+tom); boolean user01 = run.containsBean("user01"); System.out.println("容器中user01元件:"+user01); boolean tom22 = run.containsBean("tom22"); System.out.println("容器中tom22元件:"+tom22); }
@ImportResource匯入資源註解,一些老的專案還是會有xml設定的檔案,該註解用於將這些xml檔案匯入進來
======================beans.xml========================= <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <bean id="haha" class="com.atguigu.boot.bean.User"> <property name="name" value="zhangsan"></property> <property name="age" value="18"></property> </bean> <bean id="hehe" class="com.atguigu.boot.bean.Pet"> <property name="name" value="tomcat"></property> </bean> </beans>
@ImportResource("classpath:beans.xml") public class MyConfig {} ======================測試================= boolean haha = run.containsBean("haha"); boolean hehe = run.containsBean("hehe"); System.out.println("haha:"+haha);//true System.out.println("hehe:"+hehe);//true
使用java讀取到properties檔案中的內容,並且把它封裝到javaBean中,以供隨時使用
public class getProperties { public static void main(String[] args) throws FileNotFoundException, IOException { Properties pps = new Properties(); pps.load(new FileInputStream("a.properties")); Enumeration enum1 = pps.propertyNames();//得到組態檔的名字 while(enum1.hasMoreElements()) { String strKey = (String) enum1.nextElement(); String strValue = pps.getProperty(strKey); System.out.println(strKey + "=" + strValue); //封裝到JavaBean。 } } }
@ConfigurationProperties 將properties裡的內容繫結到對應的屬性當中
只有在容器中的元件,才會擁有SpringBoot提供的強大的功能
/** * 只有在容器中的元件,才會擁有SpringBoot提供的強大功能 */ @Component @ConfigurationProperties(prefix = "mycar") public class Car { private String brand; private Integer price; public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } public Integer getPrice() { return price; } public void setPrice(Integer price) { this.price = price; } @Override public String toString() { return "Car{" + "brand='" + brand + ''' + ", price=" + price + '}'; } }
@EnableConfigurationProperties(Car.class)(開啟car設定繫結功能,把這個car這個元件自動註冊到容器中)
@ConfigurationProperties
核心註解@SpringBootApplication相當於三個註解,@SpringBootConfiguration、
@EnableAutoConfiguration、@ComponentScan
@Import(AutoConfigurationPackages.Registrar.class) //給容器中匯入一個元件 public @interface AutoConfigurationPackage {} //利用Registrar給容器中匯入一系列元件 //將指定的一個包下的所有元件匯入進來,MainApplication 所在包下。
@Import(AutoConfigurationImportSelector.class)
預設掃描我們當前系統裡面所有META-INF/spring.factories位置的檔案
spring-boot-autoconfigure-2.3.4.RELEASE.jar包裡面也有META-INF/spring.factories
到此這篇關於Java SpringBoot自動設定原理詳情的文章就介紹到這了,更多相關Java 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