欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot实战教程-知识点拾遗

程序员文章站 2022-05-07 18:13:57
本篇知识点包括@Scheduled创建定时任务、@Async实现异步调用、 SpringBoot整合拦截器、多种发布打包方式等。...

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

12.1 使用@Scheduled创建定时任务

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

import org.springframework.scheduling.annotation.Scheduled

本文地址:https://blog.csdn.net/zpcandzhj/article/details/107144860