本篇文章為大家展示了怎么在Spring中引入多對象,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)成立10年來,這條路我們正越走越好,積累了技術(shù)與客戶資源,形成了良好的口碑。為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)站策劃、網(wǎng)頁設(shè)計、域名與空間、網(wǎng)絡(luò)營銷、VI設(shè)計、網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。網(wǎng)站是否美觀、功能強(qiáng)大、用戶體驗好、性價比高、打開快等等,這些對于網(wǎng)站建設(shè)都非常重要,成都創(chuàng)新互聯(lián)通過對建站技術(shù)性的掌握、對創(chuàng)意設(shè)計的研究為客戶提供一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進(jìn)步。
1.創(chuàng)建Bean
1.1如果使用方法bean注入對象, 給@Bean添加name值.
@Bean(name="別名")
代碼樣例:
注意
下面的@Bean(name = "test01DataSource"), 可以使用applicationContext.getBean("test01DataSource") 進(jìn)行獲取.
@Primary表示 如果以type類型進(jìn)行選擇的話, 首選該Bean.
也即是說,使用applicationContext.getBean(DataSource.class) 和applicationContext.getBean("test01DataSource") 獲取到的是同一個對象.
源碼:
@Configuration public class DataSourceConfig { @Bean(name = "test01DataSource") @Primary @ConfigurationProperties(prefix = "spring.datasource.test01") public DataSource getTest01DataSource() { return DataSourceBuilder.create().build(); } @Bean(name = "test02DataSource") @ConfigurationProperties(prefix = "spring.datasource.test02") public DataSource test02DataSource() { return DataSourceBuilder.create().build(); } }
測試代碼:
@Autowired ApplicationContext applicationContext; @Test public void testDataSourceHashCode() { System.out.println(applicationContext.getBean(DataSource.class).hashCode()); System.out.println((applicationContext.getBean("test01DataSource")).hashCode()); System.out.println((applicationContext.getBean("test02DataSource")).hashCode()); }
結(jié)果樣例:
1105282397
1105282397
793657559
1.2使用類注解進(jìn)行注入對象. @Service, @Component,添加value值進(jìn)行創(chuàng)建別名.
// 創(chuàng)建接口 public interface IBeanService { public void printInfo(); } //創(chuàng)建實例01, 并且添加上@Primary注解, 表名默認(rèn)使用這個類 @Service(value = "bean01") @Primary public class Bean01Service implements IBeanService { @Override public void printInfo() { System.out.println("This is bean 01"); } } //創(chuàng)建實例02, @Service(value = "bean02") public class Bean02Service implements IBeanService { @Override public void printInfo() { System.out.println("This is bean 02"); } } @RunWith(SpringRunner.class) @SpringBootTest public class IBeanServiceTest { @Autowired ApplicationContext applicationContext; // create default bean. @Autowired IBeanService beanService; @Autowired @Qualifier("bean01") IBeanService bean01Service; @Autowired @Qualifier("bean02") IBeanService bean02Service; @Test public void printInfo() { // create bean01 IBeanService bean01 = (IBeanService) applicationContext.getBean("bean01"); // create bean02 IBeanService bean02 = (IBeanService) applicationContext.getBean("bean02"); bean01.printInfo(); bean02.printInfo(); // create default bean, and it is bean01 applicationContext.getBean(IBeanService.class).printInfo(); } @Test public void printInfoThroughAutowired() { beanService.printInfo(); bean01Service.printInfo(); bean02Service.printInfo(); } }
2.調(diào)用
2.1.如果需要創(chuàng)建局部變量, 使用applicationContext.getBean(class/name)創(chuàng)建
對于有@Primary的對象, 直接使用getBean(class)進(jìn)行調(diào)用.
applicationContext.getBean(IBeanService.class)
對于其他的Bean, 使用getBean(name)進(jìn)行調(diào)用, 并進(jìn)行類型強(qiáng)制轉(zhuǎn)換.
eg. (IBeanService) applicationContext.getBean("bean02");
2.2.如果需要創(chuàng)建成員變量, 使用@Autowired和 @Qualifier("別名") 進(jìn)行
對于有@Primary的對象, 直接使用@Autowired進(jìn)行調(diào)用.代碼如下
@Autowired IBeanService beanService;
對于其他的bean, 通過添加@Qualifier("別名")進(jìn)行調(diào)用, 代碼如下
@Autowired @Qualifier("bean02") IBeanService bean02Service;
上述內(nèi)容就是怎么在Spring中引入多對象,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。