监听器以及在监听类里面获得bean的方法
Posted xiaowejie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了监听器以及在监听类里面获得bean的方法相关的知识,希望对你有一定的参考价值。
1实现HttpSessionListener和ServletContextListener,2个接口
2然后在contextInitialized初始化方法里面:
ServletContext application = event.getServletContext();
WebApplicationContext appctx = WebApplicationContextUtils.getWebApplicationContext(application);
newsSubmissionService = appctx.getBean(NewsSubmissionService.class);
3在web.xml里面配置
<listener>
<listener-class>com.guduo.log.TaskReBack</listener-class>
</listener>
以上是关于监听器以及在监听类里面获得bean的方法的主要内容,如果未能解决你的问题,请参考以下文章