本文主要是介绍springboot基于@Scheduled注解实现定时任务详解,全文清晰,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
springboot基于@Scheduled注解,实现定时任务
一:导入pom依赖
引入 springboot starter包即可
<dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><optional>true</optional></dependency>
</dependencies>
二:启动类启用定时任务:
在启动类上加注解:@
这篇关于springboot基于@Scheduled注解实现定时任务详解,全文清晰的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!