zoukankan      html  css  js  c++  java
  • 提供静态方法获取spring bean实例

    import org.springframework.beans.BeansException;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.ApplicationContextAware;
    import org.springframework.stereotype.Component;
    
    /**
     * 提供静态方法获取spring bean实例
     * 
     * @author
     *
     */
    @Component
    public class SpringContextUtils implements ApplicationContextAware {
    
        //将相关服务注入Spring框架
        @Autowired
        private ImportValidateService _importValidateService;
            
        @Autowired
        private CallBackService _callBackService;
        
        private static ApplicationContext _applicationContext = null;
    
        private static SpringContextUtils _self;
    
        public static <T> T getBean(Class<T> requiredType) {
            if (_applicationContext != null) {
                return _applicationContext.getBean(requiredType);
            } else {
                throw new org.springframework.context.ApplicationContextException("ApplicationContext has not been set.");
            }
        }
    
        public synchronized static ImportValidateService getValidateService() {
            return self()._importValidateService;
        }
    
        
        public synchronized static CallBackService getCallBackService() {
            return self()._callBackService;
        }
    
        private static SpringContextUtils self() {
            if (_self == null) {
                if (_applicationContext != null) {
                    _self = _applicationContext.getBean(SpringContextUtils.class);
                } else {
                    throw new org.springframework.context.ApplicationContextException(
                            "ApplicationContext has not been set.");
                }
            }
            return _self;
        }
    
        @Override
        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
            _applicationContext = applicationContext;
        }
    
    }
  • 相关阅读:
    基于ARM的指纹采集仪的设计与实现
    基于单片机和CPLD的数字频率计的设计
    转来的
    单片机式语音播报伏特表
    汽车驾驶模拟器单片机系统设计
    基于AT89C51的智能矿井环境质量监控系统
    我的理解OpenAPI原理
    关联规则中的支持度与置信度
    LVS-NAT实现负载均衡
    在IIS上部署Analysis Services
  • 原文地址:https://www.cnblogs.com/liangblog/p/13180830.html
Copyright © 2011-2022 走看看