Spring加载完成后调用方法

public class MyRequest implements ApplicationListener{
    @Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        // 系统启动后加载该方法  
        if(event.getApplicationContext().getParent() == null){
             /*  */
        }
    }
    
}


   

 

你可能感兴趣的:(java)