欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot2 添加启动类

程序员文章站 2022-05-29 18:34:01
...

springboot项目添加启动类方式,本人之总结了以下几种:

添加启动类的目的:比如在项目启动的时候就初始化一些数据之类的

方式1:

1:实现 ServletContextListener  类

@Slf4j
public class UserTaskMock implements ServletContextListener {

    @Override
    public  void contextInitialized(ServletContextEvent sce) {
        log.info("我初始化啦");
        log.info("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
        log.info("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
        log.info("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
        log.info("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
    }

    @Override
    public  void contextDestroyed(ServletContextEvent sce) {
        log.info("我销毁啦");
        log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        log.info("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");

    }
}

2:采用java类方式注册bean。使用springboot注解:@Configuration,等同于老试xml配置注册bean:比如:<bean name="test" class="com.org.sms.Test" >

@Configuration
@Slf4j
public class MyUserListener {
    @Bean
    public ServletListenerRegistrationBean<UserTaskMock> registrationBean (){
        ServletListenerRegistrationBean<UserTaskMock> listenerRegistrationBean = new ServletListenerRegistrationBean<UserTaskMock>();
        listenerRegistrationBean.setListener(new UserTaskMock());
        return listenerRegistrationBean;
    }
}

第一种方式结束,启动项目就可以看到效果了

第二种方式:直接实现spring 提供的CommandLineRunner 接口

@Component
@Slf4j
public class MyCommandLineRunner implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
      log.info("我加载进来啦~~~~~~~~~~~~~~~~~~~~~~~~`");
        log.info("我加载进来啦~~~~~~~~~~~~~~~~~~~~~~~~`");
        log.info("我加载进来啦~~~~~~~~~~~~~~~~~~~~~~~~`");
        log.info("我加载进来啦~~~~~~~~~~~~~~~~~~~~~~~~`");

    }
}

 

PS:如果项目有web.xml配置文件的话,直接在web.xml中配置servlet监听器也可以