码迷,mamicode.com
首页 > 编程语言 > 详细

java web启动后执行初始化任务

时间:2019-01-01 12:31:25      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:over   spring   new   eve   div   dev   继承   nbsp   lis   

写一个类继承ApplicationListener,可以直接引用下述代码,然后调用相应的方法。

package com.linewell.system;

import com.linewell.cache.ApplicationData;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;

@Component
public class InitializationProcessor implements ApplicationListener<ContextRefreshedEvent> {


    @Override
    public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
        if (contextRefreshedEvent.getApplicationContext().getParent() == null) {
            System.out.println("run onApplicationEvent method");
//dosomething } } }

 

java web启动后执行初始化任务

标签:over   spring   new   eve   div   dev   继承   nbsp   lis   

原文地址:https://www.cnblogs.com/chenmz1995/p/10204407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!