Java類擷取Spring中bean的5種方式_java

來源:互聯網
上載者:User

擷取Spring中的bean有很多種方式,再次總結一下:
第一種:在初始化時儲存ApplicationContext對象

ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");ac.getBean("beanId");

說明:這種方式適用於採用Spring架構的獨立應用程式,需要程式通過設定檔手工初始化Spring。
第二種:通過Spring提供的工具類擷取ApplicationContext對象

import org.springframework.web.context.support.WebApplicationContextUtils;ApplicationContext ac1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc);ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc);ac1.getBean("beanId");ac2.getBean("beanId");

說明:
1、這兩種方式適合於採用Spring架構的B/S系統,通過ServletContext對象擷取ApplicationContext對象,然後在通過它擷取需要的類執行個體;
2、第一種方式在擷取失敗時拋出異常,第二種方式返回null。
第三種:繼承自抽象類別ApplicationObjectSupport

說明:通過抽象類別ApplicationObjectSupport提供的getApplicationContext()方法可以方便的擷取到ApplicationContext執行個體,進而擷取Spring容器中的bean。Spring初始化時,會通過該抽象類別的setApplicationContext(ApplicationContext context)方法將ApplicationContext 對象注入。
第四種:繼承自抽象類別WebApplicationObjectSupport

說明:和上面方法類似,通過調用getWebApplicationContext()擷取WebApplicationContext執行個體;
第五種:實現介面ApplicationContextAware

說明:實現該介面的setApplicationContext(ApplicationContext context)方法,並儲存ApplicationContext對象。Spring初始化時,會通過該方法將ApplicationContext對象注入。

雖然Spring提供了後三種方法可以實現在普通的類中繼承或實現相應的類或介面來擷取Spring的ApplicationContext對象,但是在使用時一定要注意繼承或實現這些抽象類別或介面的普通java類一定要在Spring的設定檔(即application-context.xml檔案)中進行配置,否則擷取的ApplicationContext對象將為null。

下面通過實現介面ApplicationContextAware的方式示範如何擷取Spring容器中的bean:
首先自訂一個實現了ApplicationContextAware介面的類,實現裡面的方法:

package com.ghj.tool;import org.springframework.beans.BeansException;import org.springframework.context.ApplicationContext;import org.springframework.context.ApplicationContextAware;public class SpringConfigTool implements ApplicationContextAware {// extends ApplicationObjectSupport{ private static ApplicationContext ac = null; private static SpringConfigTool springConfigTool = null; public synchronized static SpringConfigTool init() { if (springConfigTool == null) {  springConfigTool = new SpringConfigTool(); } return springConfigTool; } public void setApplicationContext(ApplicationContext applicationContext)throws BeansException { ac = applicationContext; } public synchronized static Object getBean(String beanName) { return ac.getBean(beanName); }}

其次在applicationContext.xml檔案進行配置:

複製代碼 代碼如下:
<bean id="SpringConfigTool" class="com.ghj.tool.SpringConfigTool"/>

最後通過如下代碼就可以擷取到Spring容器中相應的bean了:
複製代碼 代碼如下:
SpringConfigTool.getBean("beanId");

注意一點,在伺服器啟動Spring容器初始化時,不能通過以下方法擷取Spring容器:

import org.springframework.web.context.ContextLoader; import org.springframework.web.context.WebApplicationContext;  WebApplicationContext wac = ContextLoader.getCurrentWebApplicationContext(); wac.getBean(beanID);

以上就是本文的全部內容,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.