ApplicationContextAwareの使い方

2252 ワード

次のような方法があります.
1.springのxml構成を直接使用してロードする.
2.Webアプリケーションでは、サーブレットまたはLinsenerを使用して、WebApplicationContextを介してApplicationContextを注入する.
3.ApplicationContextAwareインタフェースを実現する;この方法は比較的便利で、この方法を推奨する.
1.ApplicationContextAwareインタフェースの実装クラスAppContextを作成する.
package com.example.framework.utils;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
public class AppContext implements ApplicationContextAware {
    private static ApplicationContext applicationContext;
    
    public void setApplicationContext(ApplicationContext context) throws BeansException {
        applicationContext = context;
    }
    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }
    
    public static Object getBean(String beanName) {
        return getApplicationContext().getBean(beanName);
    }
}

2.プロファイルに対応するbeanを構成する.
<?xml version="1.0" encoding="GBK"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context 
       http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx 
       http://www.springframework.org/schema/tx/spring-tx-2.5.xsd" default-lazy-init="false">
    
    <bean id="appContext" class="com.example.framework.utils.AppContext"></bean>
     
</beans>

3.プログラムではApplicationContextから対応するbeanを直接取得できます.
注意:
スプリングのプロファイルでは、default-lazy-init=「false」を必ず使用します.この値がtrueに設定されている場合、springはアプリケーションContextをクラスに注入できません.