SpringBoot实战教程-知识点拾遗

本篇知识点包括@Scheduled创建定时任务、@Async实现异步调用、 SpringBoot整合拦截器、多种发布打包方式等。

文章目录

    • 12.1 使用@Scheduled创建定时任务
    • 12.2 使用@Async实现异步调用
    • 12.3 多环境配置
    • 12.4 手动指定端口号
    • 12.6 SpringBoot整合拦截器
    • 12.7 发布打包

12.1 使用@Scheduled创建定时任务

在Spring Boot的主类(启动类)中加入@EnableScheduling注解,启用定时任务的配置。@Scheduled支持cron表达式。
创建如下类,启动应用。

import org.springframework.scheduling.annotation.Scheduled

你可能感兴趣的:(SpringBoot实战教程)