zoukankan      html  css  js  c++  java
  • SpringContextUtil spring上下文获取工具类

    package com.midea.biz;
    
    import org.springframework.beans.BeansException;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.ApplicationContextAware;
    import org.springframework.util.Assert;
    
    public class SpringContextUtil implements ApplicationContextAware{
        
         private static ApplicationContext applicationContext;
         
            /**
             * 实现ApplicationContextAware接口的context注入函数, 将其存入静态变量.
             */
            @Override
            public void setApplicationContext(ApplicationContext applicationContext)
                    throws BeansException {
                SpringContextUtil.applicationContext = applicationContext;
            }
         
            /**
             * 取得存储在静态变量中的ApplicationContext.
             */
            public static ApplicationContext getContext() {
                checkApplicationContext();
                return applicationContext;
            }
         
            /**
             * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
             */
            @SuppressWarnings("unchecked")
            public static <T> T getBean(String name) {
                checkApplicationContext();
                return (T) applicationContext.getBean(name);
            }
         
            /**
             * 从静态变量ApplicationContext中取得Bean, 自动转型为所赋值对象的类型.
             */
            @SuppressWarnings("unchecked")
            public static <T> T getBean(Class<T> clazz) {
                checkApplicationContext();
                return (T) applicationContext.getBeansOfType(clazz);
            }
         
            private static void checkApplicationContext() {
                Assert.notNull(applicationContext,
                        "applicaitonContext未注入,请在applicationContext.xml中定义SpringContextUtil");
            }
    
    }
  • 相关阅读:
    Linux 之 编译器 gcc/g++参数详解
    linux下history命令显示历史指令记录的使用方法
    Linux 命令之 Navicat 连接 Linux 下的Mysql数据库
    Linux命令
    CentOS 下安装
    CMD命令之 :修改windows的CMD窗口输出编码格式为UTF-8
    CTO、技术总监、首席架构师的区别
    PHP ServerPush (推送) 技术的探讨
    一个公司的管理层级结构
    Table of Contents
  • 原文地址:https://www.cnblogs.com/yun965861480/p/6553432.html
Copyright © 2011-2022 走看看