Spring 实现自定义监听器案例
应用场景:
在一般的javaWeb项目中经常有一些缓存是需要再项目启动的时候加载到内存中,这样就可以使用自定义的监听器来实现。
1、在web.xml中声明
<!-- 自定义监听 启动加载系统参数 --> <listener> <listener-class>com.cn.framework.constant.OmsConfigLoader</listener-class> </listener>
2、创建类OmsConfigLoader 实现接口 ServletContextListener,项目启动的时候service还没有注入,此时调用service的方法会报错,因为在web容器中无论是servlet还是Filter都不是Spring容器来管理的。
listener的生命周期是web容器维护的,bean的生命周期是由Spring容器来维护的,所以在listener中使用@Resource,listener不认识,
可以沟通过如下方法来解决:
使用WebApplicationContextUtils工具类,该工具类的作用是获取到spring容器的引用,进而获取到我们需要的bean实例。
package com.cn.framework.constant; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import org.apache.log4j.Logger; import org.springframework.web.context.support.WebApplicationContextUtils; import com.kxs.service.systemService.ISystemService; public class OmsConfigLoader implements ServletContextListener { private static Logger LOG = Logger.getLogger(OmsConfigLoader.class); @Override public void contextDestroyed(ServletContextEvent arg0) { // TODO Auto-generated method stub } @Override public void contextInitialized(ServletContextEvent arg0) { LOG.info("==> 加载OMS系统配置信息 Start =="); try { ISystemService iSystemService = WebApplicationContextUtils.getWebApplicationContext(arg0.getServletContext()) .getBean(ISystemService.class); iSystemService.refreshCache(); } catch (Exception e) { e.printStackTrace(); LOG.info(e.toString()); } LOG.info("==> 加载OMS系统配置信息 End =="); } }
补充:Spring-xml配置自定义事件监听器
一、自定义事件
Spring中使用自定义事件类型:
第一步:自定义事件类型:自定义类需要继承Spring中org.springframework.context.ApplicationEvent类
第二步:设置事件监听器,实现org.springframework.context.ApplicationListener<自定义事件类型>接口,重写onApplicationEvent方法监听事件源
第三步:将事件监听器配置到Spring中,通过xml配置文件将事件监听器配置到bean容器中
第四步:Spring容器(container容器发布事件)发布事件
自定义事件类型
public class RainEvent extends ApplicationEvent { private static final long serialVersionUID = 1L; public RainEvent(Object source) { super(source); } }
监听器:可以创建多个监听器
public class RainEventListener1 implements ApplicationListener<RainEvent> { //监听rainevent事件,调用当前方法 @Override public void onApplicationEvent(RainEvent event) { Object source = event.getSource(); System.out.println("监听器1:"+source); } } public class RainEventListener2 implements ApplicationListener<RainEvent> { //监听rainevent事件,调用当前方法 @Override public void onApplicationEvent(RainEvent event) { Object source = event.getSource(); System.out.println("监听器2:"+source); } }
xml配置文件将监听器配置到bean容器中
<!-- 配置监听器,向spring容器发布事件,自动触发监听器的onApplicationEvent方法 --> <bean class="com.briup.ioc.event.RainEventListener1"></bean> <bean class="com.briup.ioc.event.RainEventListener2"></bean>
bean容器发布事件
public void ioc_event() { try { String path = "com/briup/ioc/event/event.xml"; ApplicationContext container = new ClassPathXmlApplicationContext(path); container.publishEvent(new RainEvent("打雷了,下雨了!")); } catch (Exception e) { e.printStackTrace(); } }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。
相关文章
Springboot如何利用拦截器拦截请求信息收集到日志详解
一些系统经常需要关注用户请求的具体信息,如用户信息、请求参数、响应结果等等,在SpringBoot应用中可通过拦截器的方式统一处理,下面这篇文章主要给大家介绍了关于Springboot如何利用拦截器拦截请求信息收集到日志的相关资料,需要的朋友可以参考下2021-08-08Spring Cloud Ribbon 中的 7 种负载均衡策略的实现方法
Ribbon 内置了 7 种负载均衡策略:轮询策略、权重策略、随机策略、最小连接数策略、重试策略、可用性敏感策略、区域性敏感策略,并且用户可以通过继承 RoundRibbonRule 来实现自定义负载均衡策略,对Spring Cloud Ribbon负载均衡策略相关知识感兴趣的朋友一起看看吧2022-03-03基于Lucene的Java搜索服务器Elasticsearch安装使用教程
Elasticsearch也是用Java开发的,并作为Apache许可条款下的开放源码发布,能够做到实时搜索,且稳定、可靠、快速,安装使用方便,这里我们就来看一下基于Lucene的Java搜索服务器Elasticsearch安装使用教程:2016-06-06
最新评论