美文网首页
spring 容器启动完成后进行某些操作

spring 容器启动完成后进行某些操作

作者: Jimhou | 来源:发表于2018-08-15 10:45 被阅读14次

两种方法:

@PostConstruct

spring 初始化bean之后会调用。

@PostConstruct
    public void setHashOperation() {
        hashOperation = stringRedisTemplate.opsForHash();
    }
实现ApplicationLIstener

spring 容器加载完成后调用。

@Component
public class ProcessStarter implements ApplicationListener<ContextRefreshedEvent> {
@Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        applicationContext = event.getApplicationContext();
        startMainInNewThread();
    }
}
实现ApplicationRunner

spring 容器加载完成后调用。

@Component
public class ProcessStarter implements ApplicationRunner {
 @Override
    public void run(ApplicationArguments args) throws Exception {
   
    }
}

相关文章

网友评论

      本文标题:spring 容器启动完成后进行某些操作

      本文链接:https://www.haomeiwen.com/subject/iumibftx.html