Spring 实现自定义监听器案例
应用场景:
在一般的javaWeb项目中经常有一些缓存是需要再项目启动的时候加载到内存中,这样就可以使用自定义的监听器来实现。
1、在web.xml中声明
com.cn.framework.constant.OmsConfigLoader
2、创建类OmsConfigLoader实现接口ServletContextListener,项目启动的时候service还没有注入,此时调用service的方法会报错,因为在web容器中无论是servlet还是Filter都不是Spring容器来管理的。
listener的生命周期是web容器维护的,bean的生命周期是由Spring容器来维护的,所以在listener中使用@Resource,listener不认识,
可以沟通过如下方法来解决:
使用WebApplicationContextUtils工具类,该工具类的作用是获取到spring容器的引用,进而获取到我们需要的bean实例。
packagecom.cn.framework.constant; importjavax.servlet.ServletContextEvent; importjavax.servlet.ServletContextListener; importorg.apache.log4j.Logger; importorg.springframework.web.context.support.WebApplicationContextUtils; importcom.kxs.service.systemService.ISystemService; publicclassOmsConfigLoaderimplementsServletContextListener{ privatestaticLoggerLOG=Logger.getLogger(OmsConfigLoader.class); @Override publicvoidcontextDestroyed(ServletContextEventarg0){ //TODOAuto-generatedmethodstub } @Override publicvoidcontextInitialized(ServletContextEventarg0){ LOG.info("==>加载OMS系统配置信息Start=="); try{ ISystemServiceiSystemService=WebApplicationContextUtils.getWebApplicationContext(arg0.getServletContext()) .getBean(ISystemService.class); iSystemService.refreshCache(); }catch(Exceptione){ 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容器发布事件)发布事件
自定义事件类型
publicclassRainEventextendsApplicationEvent{ privatestaticfinallongserialVersionUID=1L; publicRainEvent(Objectsource){ super(source); } }
监听器:可以创建多个监听器
publicclassRainEventListener1implementsApplicationListener{ //监听rainevent事件,调用当前方法 @Override publicvoidonApplicationEvent(RainEventevent){ Objectsource=event.getSource(); System.out.println("监听器1:"+source); } } publicclassRainEventListener2implementsApplicationListener { //监听rainevent事件,调用当前方法 @Override publicvoidonApplicationEvent(RainEventevent){ Objectsource=event.getSource(); System.out.println("监听器2:"+source); } }
xml配置文件将监听器配置到bean容器中
bean容器发布事件
publicvoidioc_event(){ try{ Stringpath="com/briup/ioc/event/event.xml"; ApplicationContextcontainer= newClassPathXmlApplicationContext(path); container.publishEvent(newRainEvent("打雷了,下雨了!")); }catch(Exceptione){ e.printStackTrace(); } }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持毛票票。如有错误或未考虑完全的地方,望不吝赐教。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。