程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Spring獲取ApplicationContext,applicationcontext

Spring獲取ApplicationContext,applicationcontext

編輯:JAVA綜合教程

Spring獲取ApplicationContext,applicationcontext


在Spring+Struts+Hibernate中,有時需要使用到Spring上下文。項目啟動時,會自動根據applicationContext配置文件初始化上下文,可以使用ApplicationContextAware接口去獲得Spring上下文。創建以下的類:

package com.school.tool;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

@Component
public class SpringContextUtil implements ApplicationContextAware {

    private static ApplicationContext applicationContext;

    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        SpringContextUtil.applicationContext = applicationContext;
    }

    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }

    @SuppressWarnings("unchecked")
    public static <T> T getBean(String name) throws BeansException {
        return (T) applicationContext.getBean(name);
    }

}

在applicationContext配置文件中配置這個類:

<bean id="springContextUtil" class="com.school.tool.SpringContextUtil" />

這樣,在根據applicationContext初始化上下文時,會自動調用setApplicationContext()方法去獲取ApplicationContext。

也可以使用

ClassPathXmlApplicationContext("applicationContext.xml")

去獲取ApplicationContext,不過這相當於把重新初始化一次上下文,速度會很慢,而且逼格也不高,不推薦使用。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved