springboot cron每分钟一次
时间: 2023-08-03 13:35:07 浏览: 88
详解Spring Boot中使用@Scheduled创建定时任务
要实现每分钟执行一次任务,可以使用 Spring Boot 的 @Scheduled 注解结合 cron 表达式来实现。具体实现步骤如下:
1. 在需要执行定时任务的方法上添加 @Scheduled 注解。
2. 在 @Scheduled 注解中添加 cron 表达式,表示每分钟执行一次任务。cron 表达式为:0 * * * * ?。
代码示例:
```
@Scheduled(cron = "0 * * * * ?")
public void task() {
// 执行定时任务
}
```
注意:在使用 @Scheduled 注解时,需要在启动类上添加注解 @EnableScheduling,才能使定时任务生效。
阅读全文