[toc]
为啥
看了一下极客学院里面感觉有不少翻译后的wiki,感觉还不错就多了解一下呗;
tips
spring boot 初始化后执行某些特定的方法等
@Configuration
public class DemoInit implements ApplicationListener<ContextRefreshedEvent> {
@Override
public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
}
}
发表回复