栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

云课堂项目总结(1)

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

云课堂项目总结(1)

ApplicationContextAware的使用

spring加载配置文件时,会自动调用ApplicationContextAware中的setApplicationContext,所以我们可以实现一个工具类继ApplicationContextAware并重写setApplicationContext 获取applicationContext 保存到工具类中,通过注解@Component 或其他 将工具类bean交给spring管理创建。这以后我们就能够方便在我们想要的地方通过applicationContext 获取想要的bean了。
项目当中的工具类:

@Component
public class ApplicationContextHolder implements ApplicationContextAware {
    private static ApplicationContext applicationContext;

    //@Override
    public void setApplicationContext(ApplicationContext ctx) throws BeansException {
        applicationContext = ctx;
    }

    
    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }

    
    public static  T getBean(Class clazz) {
        return applicationContext.getBean(clazz);
    }

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

ApplicationContextAware接口:

//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package org.springframework.context;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.Aware;

public interface ApplicationContextAware extends Aware {
    void setApplicationContext(ApplicationContext var1) throws BeansException;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/343064.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号