您好,登錄后才能下訂單哦!
這篇文章主要講解了Spring基于注解顯式實(shí)現(xiàn)自動(dòng)裝配的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
構(gòu)建bean文件:
public class People { private String name = "小明"; }
編寫配置類:
@Configuration @Import(ApplicationConfig2.class) public class ApplicationConfig { @Bean public People getPeople(){ return new People(); } }
@configuration:說明這是一個(gè)配置類,功能幾乎等同于<beans>標(biāo)簽
@Bean:說明這是一個(gè)bean,方法的返回值也就是<bean>中的class屬性,方法的名稱就是<bean>中的id
@Import:用于導(dǎo)入其它的配置類,相當(dāng)于<beans>下的<import>標(biāo)簽
編寫測(cè)試類:
public class MyTest { public static void main(String[] args) { ApplicationContext context = new AnnotationConfigApplicationContext("com.guan.config"); People people = context.getBean("getPeople",People.class); System.out.println(people.getName()); } }
注意:這里使用AnnotationConfigApplicationContext類獲得上下文
看完上述內(nèi)容,是不是對(duì)Spring基于注解顯式實(shí)現(xiàn)自動(dòng)裝配的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(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)容。