您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)如何使用@Configuration注解,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
啟動(dòng)類
@SpringBootApplication public class SpirngdemoApplication { public static void main(String[] args) { //SpringApplication.run(SpirngdemoApplication.class, args); ApplicationContext context = new AnnotationConfigApplicationContext(TestConfiguration.class); System.out.println("..................Service starts successfully.................."); } }
配置類
@Configuration public class TestConfiguration { public TestConfiguration() { System.out.println("TestConfiguration容器初始化..."); } }
輸出結(jié)果:
TestConfiguration容器初始化... ..................Service starts successfully..................
從輸出結(jié)果的先后順序可以看出,Spring 在啟動(dòng)過(guò)程中是先進(jìn)行容器的初始化操作的。
啟動(dòng)類
@SpringBootApplication public class SpirngdemoApplication { public static void main(String[] args) { //SpringApplication.run(SpirngdemoApplication.class, args); ApplicationContext context = new AnnotationConfigApplicationContext(TestConfiguration.class); System.out.println("..................Service starts successfully.................."); TestBean tb = (TestBean) context.getBean("testBean"); tb.sayHello(); } }
bean 類
public class TestBean { private String username; private String url; private String password; public void sayHello() { System.out.println("TestBean sayHello..."); } public String toString() { return "username:" + this.username + ",url:" + this.url + ",password:" + this.password; } public void start() { System.out.println("TestBean 初始化。。。"); } public void cleanUp() { System.out.println("TestBean 銷毀。。。"); } }
配置類
@Configuration public class TestConfiguration { public TestConfiguration() { System.out.println("TestConfiguration容器初始化..."); } @Bean(name="testBean",initMethod="start",destroyMethod="cleanUp") @Scope(value = "prototype") public TestBean testBean() { return new TestBean(); } }
Scope,也稱作用域,在 Spring IoC 容器是指其創(chuàng)建的 Bean 對(duì)象相對(duì)于其他 Bean 對(duì)象的請(qǐng)求可見(jiàn)范圍。在 Spring IoC 容器中具有以下幾種作用域:基本作用域(singleton、prototype),Web 作用域(reqeust、session、globalsession),自定義作用域。
singleton:?jiǎn)卫J?,在整個(gè)Spring IoC容器中,使用singleton定義的Bean將只有一個(gè)實(shí)例
prototype:原型模式,每次通過(guò)容器的getBean方法獲取prototype定義的Bean時(shí),都將產(chǎn)生一個(gè)新的Bean實(shí)例
request:對(duì)于每次HTTP請(qǐng)求,使用request定義的Bean都將產(chǎn)生一個(gè)新實(shí)例,即每次HTTP請(qǐng)求將會(huì)產(chǎn)生不同的Bean實(shí)例。只有在Web應(yīng)用中使用Spring時(shí),該作用域才有效
session:對(duì)于每次HTTP Session,使用session定義的Bean都將產(chǎn)生一個(gè)新實(shí)例。同樣只有在Web應(yīng)用中使用Spring時(shí),該作用域才有效
globalsession:每個(gè)全局的HTTP Session,使用session定義的Bean都將產(chǎn)生一個(gè)新實(shí)例。典型情況下,僅在使用portlet context的時(shí)候有效。同樣只有在Web應(yīng)用中使用Spring時(shí),該作用域才有效
輸出結(jié)果
TestConfiguration容器初始化... ..................Service starts successfully.................. TestBean 初始化。。。 TestBean sayHello...
@Bean注解注冊(cè)bean,同時(shí)可以指定初始化和銷毀方法 可以看到@Bean也可以管理bean 的生命周期
啟動(dòng)類同上
配置類:
@Configuration @ComponentScan(basePackages = "com.wenxuan.springdemo.bean") public class TestConfiguration { public TestConfiguration() { System.out.println("TestConfiguration容器初始化..."); } }
bean 類:
@Component public class TestBean { private String username; private String url; private String password; public void sayHello() { System.out.println("TestBean sayHello..."); } public String toString() { return "username:" + this.username + ",url:" + this.url + ",password:" + this.password; } public void start() { System.out.println("TestBean 初始化。。。"); } public void cleanUp() { System.out.println("TestBean 銷毀。。。"); } }
bean 類添加@Component注解,配置類不再添加@Bean 手動(dòng)聲明,而是添加@ComponentScan 注解,并指明配置的包,同樣達(dá)到初始化 bean 的目的。 輸出結(jié)果:
TestConfiguration容器初始化... ..................Service starts successfully.................. TestBean sayHello...
以上就是如何使用@Configuration注解,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。