com.tjport.common.spring.SpringContextHolder.java Source code

Java tutorial

Introduction

Here is the source code for com.tjport.common.spring.SpringContextHolder.java

Source

/**
 *  Copyright (c) 2012-2014 http://www.eryansky.com
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 */
package com.tjport.common.spring;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

/**
 * ?????Spring ApplicationContext, ???ApplicaitonContext.
 *
 */
public class SpringContextHolder implements ApplicationContextAware, DisposableBean {

    private static ApplicationContext applicationContext = null;

    private final static Logger logger = LoggerFactory.getLogger(SpringContextHolder.class);

    /**
     * ?????ApplicationContext.
     */
    public static ApplicationContext getApplicationContext() {
        assertContextInjected();
        return applicationContext;
    }

    /**
     * ????applicationContext?Bean, .
     */
    public static <T> T getBean(String name) {
        assertContextInjected();
        return (T) applicationContext.getBean(name);
    }

    /**
     * ????applicationContext?Bean, .
     */
    public static <T> T getBean(Class<T> requiredType) {
        assertContextInjected();
        return applicationContext.getBean(requiredType);
    }

    /**
     * SpringContextHolderApplicationContextNull.
     */
    public static void clearHolder() {
        logger.debug("SpringContextHolderApplicationContext:" + applicationContext);
        applicationContext = null;
    }

    /**
     * ApplicationContextAware?, Context????.
     */
    public void setApplicationContext(ApplicationContext applicationContext) {
        logger.debug("ApplicationContextSpringContextHolder:{}", applicationContext);

        if (SpringContextHolder.applicationContext != null) {
            logger.warn("SpringContextHolderApplicationContext, ApplicationContext:"
                    + SpringContextHolder.applicationContext);
        }

        SpringContextHolder.applicationContext = applicationContext;
    }

    /**
     * DisposableBean?, Context?????.
     */
    public void destroy() throws Exception {
        SpringContextHolder.clearHolder();
    }

    /**
     * ApplicationContext?.
     */
    private static void assertContextInjected() {
        if (applicationContext == null) {
            logger.warn(
                    "applicaitonContext, applicationContext.xmlSpringContextHolder.");
        }
    }
}