spring 項目中獲取bean 的方法


1、Web工程:
     1)ContextLoaderListener.getCurrentWebApplicationContext ().getBean ("beanName"); 

     2)使用servletContext來獲取ApplicationContext
          ApplicationContext ac1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc); 
          ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc); 

          這兩中方式的區別在於前者在獲取失敗時會拋出異常,而後者在獲取失敗時會返回null

     3)自己寫一個listener實現ServletContextListener接口
          web.xml中配置好listener
          <listener> 
        <listener-class>com.ibatis.jpetstore.util.SpringInit</listener-class> 
</listener>

listener實現類

public class SpringInit implements ServletContextListener { 
    

    private static WebApplicationContext springContext; 
    
    public SpringInit() { 
        super(); 
    } 
    
    public void contextInitialized(ServletContextEvent event) { 
        springContext = WebApplicationContextUtils.getWebApplicationContext(event.getServletContext()); 
    } 
    

    public void contextDestroyed(ServletContextEvent event) { 
    } 
    
    public static ApplicationContext getApplicationContext() { 
        return springContext; 
    } 

    


2、普通Java工程:
     1)寫一個類實現ApplicationContextAware接口
       /**
*
*/
public class ApplicationContextUtil implements ApplicationContextAware
{
    private static ApplicationContext context;//聲明一個靜態變量保存
    @SuppressWarnings ("static-access")
    @Override
    public void setApplicationContext (ApplicationContext context) throws BeansException
    {
        this.context = context;
       
    }
   
    public static ApplicationContext getContext(){
        return context;
    }
}
2)在Spring的配置文件中加入:<bean id="applicationContextUtil" class="net.carefx.platform.mdm.server.core.utils.ApplicationContextUtil" />

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章