Java教程

JAVA - 启动项目时做一些初始化

本文主要是介绍JAVA - 启动项目时做一些初始化,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

项目启动后做初始化操作

很多操作是想在项目启动后进行操作的,比如:

  1. 把数据库的敏感词写进内存中
  2. 同步redis数据
  3. 同步mysql数据

在启动类的存放位置如下:
在这里插入图片描述

@EnableScheduling
@SpringBootApplication
public class FristApplication {

    public static void main(String[] args) {
        SpringApplication.run(FristApplication.class, args);
    }

}

@Slf4j
@Component
class ApplicationRunnerImpl implements ApplicationRunner {

    @Autowired
    private TaskHanderComponent taskHanderComponent;

    @Override
    public void run(ApplicationArguments args) throws Exception {
        log.info("||==================================开始初始化==================================||");
        log.info("||==================================执行任务==================================||");

		// 把数据库的敏感词写进内存中
		// 同步redis数据
//        taskHanderComponent.syncSensitive();
    }
}
这篇关于JAVA - 启动项目时做一些初始化的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!