博客
关于我
spring不懂的applicationContext
阅读量:653 次
发布时间:2019-03-15

本文共 685 字,大约阅读时间需要 2 分钟。

看不懂这个类啊。

applicationContext是谁给赋值的啊,怎么赋值的啊。

 

public class ContextUtil {

    private static ApplicationContext applicationContext;
    public static void setApplicationContext(
            ApplicationContext applicationContext) throws BeansException {
        ContextUtil.applicationContext = applicationContext;
    }
    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }
   
}
  _____________________________________________

private ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");

这行代码可以加载apllicationContext的内容,spring应该是自动加载的吧。...

spring在web项目里可以通过在web.xml配置上下文加载监听org.springframework.web.context.ContextLoaderListener来实现对bean的实例化和依赖注入。

转载地址:http://ifcmz.baihongyu.com/

你可能感兴趣的文章
MySQL 的Rename Table语句
查看>>
MySQL 的全局锁、表锁和行锁
查看>>
mysql 的存储引擎介绍
查看>>
MySQL 的存储引擎有哪些?为什么常用InnoDB?
查看>>
Mysql 知识回顾总结-索引
查看>>
Mysql 笔记
查看>>
MySQL 精选 60 道面试题(含答案)
查看>>
mysql 索引
查看>>
MySQL 索引失效的 15 种场景!
查看>>
MySQL 索引深入解析及优化策略
查看>>
MySQL 索引的面试题总结
查看>>
mysql 索引类型以及创建
查看>>
MySQL 索引连环问题,你能答对几个?
查看>>
Mysql 索引问题集锦
查看>>
Mysql 纵表转换为横表
查看>>
mysql 编译安装 window篇
查看>>
mysql 网络目录_联机目录数据库
查看>>
MySQL 聚簇索引&&二级索引&&辅助索引
查看>>
Mysql 脏页 脏读 脏数据
查看>>
mysql 自增id和UUID做主键性能分析,及最优方案
查看>>