ApplicationListener用法

Posted 渡劫锦官城

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ApplicationListener用法相关的知识,希望对你有一定的参考价值。

ApplicationListener是spring提供的接口,作用是在web服务器启动时去加载某些程序。

用法:

1、实现ApplicationListener接口,并重写onApplicationEvent方法

@Component
public class StartLoader implements ApplicationListener<ContextRefreshedEvent> {

    @Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        if(event.getApplicationContext().getParent() == null){
            System.out.println("系统初始化...");
            try {
                Thread.currentThread().sleep(1000);
            } catch (Exception e) {
                System.out.println("初始化异常...");
                e.printStackTrace();
            }
            System.out.println("初始化完成...");
        }
    }
}
event.getApplicationContext().getParent() == null:
ApplicationContext就是Root容器,所以不存在父容器

2、创建spring的应用上下文(ApplicationContext.xml),并配置注解扫描(或配置bean)

<!--自动扫描含有@Component将其注入为bean -->  
<context:component-scan base-package="com.aidilude.component" />

3、配置web.xml

   <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            classpath:spring.xml
        </param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
ContextLoaderListener的作用了:
在web容器初始化的时候,加载spring的应用上下文配置文件(ApplicationContext.xml),与context-param标签一起使用


以上是关于ApplicationListener用法的主要内容,如果未能解决你的问题,请参考以下文章

Spring 的监听事件 ApplicationListener 和 ApplicationEvent 用法

web服务启动spring自动执行ApplicationListener的用法

Spring 的监听事件 ApplicationListener 和 ApplicationEvent 用法

c_cpp 加载源图像固定用法(代码片段,不全)

ApplicationListener的使用

spring 代码中获取ApplicationContext(@AutoWired,ApplicationListener)