SpringBoot项目设置启动时运行某个任务方法

很多时候,我们需要项目启动时执行一些任务,比如对表数据进行初始化、判断分表是否已经存在、或者将需要的参数型数据存入缓存中。下面介绍一种SpringBoot项目设置启动时运行某个任务方法。

实现思路

1.创建一个类,作为ApplicationRunner类的实现类
2.在这个类的**run(ApplicationArguments args)**方法中调用你想要执行的方法。

示例

@Component
public class GetFormulaTask implements ApplicationRunner {
    private final static Logger logger = LoggerFactory.getLogger(GetFormulaTask .class);

    @Autowired
    private DataService dataService;

    @Override
    public void run(ApplicationArguments args) {
        logger.info("获取公式信息存入缓存" );
        // 将公式信息存入缓存
        dataService.saveFormulaToCache();
        logger.info("存入成功");
    }
}

你可能感兴趣的:(SpringBoot)