<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
有時候在專案中,我們會自己建立一些類,類中需要使用到容器中的一些類。方法是新建類並實現ApplicationContextAware 介面,在類中建立靜態物件 ApplicationContext 物件,這個物件就如同xml設定中的 applicationContext.xml,容器中類都可以獲取到。
例如@Service、 @Component、@Repository、@Controller 、@Bean 標註的類都能獲取到。
/** * 功能描述:Spring Bean 管理類 * */ @Component public class SpringContextUtils implements ApplicationContextAware { /** * 上下文物件範例 */ private static ApplicationContext applicationContext; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { this.applicationContext = applicationContext; } /** * 獲取applicationContext * * @return */ public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 通過name獲取 Bean. * * @param name * @return */ public static Object getBean(String name) { return getApplicationContext().getBean(name); } /** * 通過class獲取Bean. * * @param clazz * @param <T> * @return */ public static <T> T getBean(Class<T> clazz) { try{ return getApplicationContext().getBean(clazz); }catch (Exception e){ return null; } } /** * 通過name,以及Clazz返回指定的Bean * * @param name * @param clazz * @param <T> * @return */ public static <T> T getBean(String name, Class<T> clazz) { return getApplicationContext().getBean(name, clazz); } }
(1)主要註解
@Configuration
告訴SpringBoot這是一個設定類 == 組態檔
注意:spring5.2以後@Configuration多了一個屬性proxyBeanMethods,預設為true
@Configuration(proxyBeanMethods = true)
proxyBeanMethods
:代理bean的方法Full(proxyBeanMethods = true)
、【保證每個@Bean方法被呼叫多少次返回的元件都是單範例的】 外部無論對設定類中的這個元件註冊方法呼叫多少次獲取的都是之前註冊容器中的單範例物件Lite(proxyBeanMethods = false)
【每個@Bean方法被呼叫多少次返回的元件都是新建立的】● Full模式與Lite模式
○ 最佳實戰
■ 設定 類元件之間無依賴關係用Lite模式加速容器啟動過程,減少判斷
■ 設定類元件之間有依賴關係,方法會被呼叫得到之前單範例元件,用Full模式
@Bean
(2) 基本使用
bean包:
Pet類:
/** * 寵物 */ public class Pet { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public Pet(String name) { this.name = name; } public Pet() { } @Override public String toString() { return "Pet{" + "name='" + name + ''' + '}'; } }
User類:
/* 使用者 */ public class User { private String name; private Integer age; public User() { } public User(String name, Integer age) { this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } @Override public String toString() { return "User{" + "name='" + name + ''' + ", age=" + age + '}'; } }
config包:
MyConfig類
@Configuration(proxyBeanMethods = false)//告訴Spring這是一個設定類 public class MyConfig { @Bean//給容器中新增元件。以方法名作為元件的id。返回型別就是元件型別。返回的值,就是元件在容器中的範例 public User user01(){ return new User("zhangsan",18); } @Bean("tom") public Pet tomcatPet(){ return new Pet("tomcat"); } }
controller包:
MainApplication類
@SpringBootConfiguration @EnableAutoConfiguration @ComponentScan("com") 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、從容器中獲取元件 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)); } }
結果
(3)補充 @Import
給容器匯入一個元件
必須寫在容器中的元件上
* @Import({User.class, DBHelper.class}) * 給容器中自動建立出這兩個型別的元件、預設元件的名字就是全類名 * * * */ @Import({User.class, DBHelper.class}) @Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 public class MyConfig { }
@Configuration測試程式碼如下
@SpringBootConfiguration @EnableAutoConfiguration @ComponentScan("com") 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、從容器中獲取元件 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)); //5、獲取元件 String[] beanNamesForType = run.getBeanNamesForType(User.class); System.out.println("======"); for (String s : beanNamesForType) { System.out.println(s); } DBHelper bean1 = run.getBean(DBHelper.class); System.out.println(bean1); } }
@Conditional
條件裝配:滿足Conditional指定的條件,則進行元件注入
ConditionalOnBean
:當容器中存在指定的bean元件時才幹某些事情ConditionalOnMissingBean
:當容器中不存在指定的bean元件時才幹某些事情ConditionalOnClass
:當容器中有某個類時才幹某些事情ConditionalOnResource
:當專案的類路徑存在某個資源時,才幹什麼事=====================測試條件裝配========================== @Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 //@ConditionalOnBean(name = "tom") @ConditionalOnMissingBean(name = "tom") public class MyConfig { @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
匯入資源
@ImportResource("classpath:beans.xml")//匯入spring的組態檔 @Import({User.class, DBHelper.class}) @Configuration(proxyBeanMethods = false)//告訴Spring這是一個設定類 @ConditionalOnMissingBean(name = "tom") public class MyConfig {
======================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>
測試
======================測試================= 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中,以供隨時使用;
(1) @Component + @ConfigurationProperties
properties檔案
/** * 只有在容器中的元件,才會擁有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 + '}'; } }
(2) @EnableConfigurationProperties + @ConfigurationProperties
@Configuration(proxyBeanMethods = false) //告訴SpringBoot這是一個設定類 == 組態檔 @ConditionalOnMissingBean(name = "tom") @ImportResource("classpath:beans.xml") //@EnableConfigurationProperties(Car.class) //1、開啟Car設定繫結功能 //2、把這個Car這個元件自動註冊到容器中 public class MyConfig {
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援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