Spring如何实现内置监听器
这篇文章主要介绍“Spring如何实现内置监听器”,在日常操作中,相信很多人在Spring如何实现内置监听器问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Spring如何实现内置监听器”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
目录
Spring内置监听器
pom.xml文件中加入依赖
在web.xml文件中注册监听器
获取容器对象
1、直接通过key值获取
2、通过WebApplicationContextUtils工具类获取
Spring内置监听器
对于 Web 应用来说,ServletContext 对象是唯一的,一个 Web 应用,只有一个ServletContext 对象,该对象是在 Web 应用装载时初始化的。若将 Spring 容器的创建时机,放在 ServletContext 初始化时,就可以保证 Spring 容器的创建只会执行一次,也就保证了Spring 容器在整个应用中的唯一性。
当 Spring 容器创建好后,在整个应用的生命周期过程中,Spring 容器应该是随时可以被访问的。即,Spring 容器应具有全局性。而放入 ServletContext 对象的属性,就具有应用的全局性。所以,将创建好的 Spring 容器,以属性的形式放入到 ServletContext 的空间中,就保证了 Spring 容器的全局性。
上述的这些工作,已经被封装在了如下的 Spring 的 Jar 包的相关 API 中:spring-web-5.2.5.RELEASE
下面演示使用步骤
pom.xml文件中加入依赖
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.2.5.RELEASE</version> </dependency>
在web.xml文件中注册监听器
若要在 ServletContext 初 始 化 时 创 建 Spring 容 器 , 就 需 要 使 用 监 听 器 接 口ServletContextListener 对 ServletContext 进行监听。在 web.xml 中注册该监听器
Spring 为该监听器接口定义了一个实现类 ContextLoaderListener,完成了两个很重要的工作:创建容器对象,并将容器对象放入到了 ServletContext 的空间中。打开 ContextLoaderListener 的源码。看到一共四个方法,两个是构造方法,一个初始化方法,一个销毁方法
<!--注册监听器ContextLoaderListener--> <!-- 监听器被创建对象后,会读取/WEB-INF/applicationContext.xml 可以修改默认的文件位置,使用context-param重新指定文件位置 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
try{ if(this.context==null){ this.context=this.createWebApplicationContext(servletContext); } if(this.contextinstanceofConfigurableWebApplicationContext){ ConfigurableWebApplicationContextcwac=(ConfigurableWebApplicationContext)this.context; if(!cwac.isActive()){ if(cwac.getParent()==null){ ApplicationContextparent=this.loadParentContext(servletContext); cwac.setParent(parent); } this.configureAndRefreshWebApplicationContext(cwac,servletContext); } } servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,this.context);
上面是initWebApplicationContext()方法的部分源码,可以看到在该方法中创建了容器对象context,并且将context对象加入到了servletContext全局作用域对象中,key值为WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE
获取容器对象
1、直接通过key值获取
WebApplicationContextcontext=null; Objectattr=getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE); if(attr!=null){ context=(WebApplicationContext)attr; }
2、通过WebApplicationContextUtils工具类获取
以下是WebApplicationContextUtils
中的调用关系可以清晰的获得
publicstaticWebApplicationContextgetRequiredWebApplicationContext(ServletContextsc)throwsIllegalStateException{ WebApplicationContextwac=getWebApplicationContext(sc); if(wac==null){ thrownewIllegalStateException("NoWebApplicationContextfound:noContextLoaderListenerregistered?"); }else{ returnwac; } } @Nullable publicstaticWebApplicationContextgetWebApplicationContext(ServletContextsc){ returngetWebApplicationContext(sc,WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE); } @Nullable publicstaticWebApplicationContextgetWebApplicationContext(ServletContextsc,StringattrName){ Assert.notNull(sc,"ServletContextmustnotbenull"); Objectattr=sc.getAttribute(attrName);
ServletContextsc=getServletContext(); WebApplicationContextcontext=WebApplicationContextUtils.getWebApplicationContext(sc);
到此,关于“Spring如何实现内置监听器”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注恰卡编程网网站,小编会继续努力为大家带来更多实用的文章!
推荐阅读
-
Spring框架基于注解开发CRUD详解
-
spring DI依赖注入方式和区别有哪些
-
spring data jpa开启批量插入、批量更新的示例分析
-
spring中怎么利用FactoryBean配置Bean
这篇文章将为大家详细讲解有关spring中怎么利用FactoryBean配置Bean,文章内容质量较高,因此小编分享给大家做个参考...
-
如何解决解决Spring Boot正常启动后访问Controller提示404的问题
小编给大家分享一下如何解决解决SpringBoot正常启动后访问Controller提示404的问题,希望大家阅读完这篇文章之后...
-
Spring中怎么解决循环依赖问题
本篇文章给大家分享的是有关Spring中怎么解决循环依赖问题,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有...
-
Spring(aop,如何通过获取代理对象实现事务切换)
Spring,aop,如何通过获取代理对象实现事务切换,恰卡网带你了解更多相关信息。Springaop获取代理对象实现...
-
Spring(bean,四种注入方式详解)
Spring,bean,四种注入方式详解,恰卡网带你了解更多相关信息。目录一、Set方式注入pojo层:1.xml文件t...
-
Spring(Cloud,如何保证微服务内安全)
-
Spring(Cloud,Config,使用本地配置文件方式)