wjli
2023-05-16 5c12c5a4490898f20259e9de83767c4dadff10ba
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/wx/TaskController.java
@@ -21,8 +21,8 @@
import java.util.List;
@Component
//@Configuration      //1.主要用于标记配置类,兼备Component的效果。
//@EnableScheduling
@Configuration      //1.主要用于标记配置类,兼备Component的效果。
@EnableScheduling
@AllArgsConstructor
public class TaskController {
    private IOrderTaskService iOrderTaskService;
@@ -32,7 +32,7 @@
//    @Scheduled(cron = "0/5 * * * * ?")
//    @Scheduled(cron = "0 */1 * * * ?")
//    @Scheduled(cron = "0 0 2 * * ?")//每天凌晨两点执行一次
    //@Scheduled(cron = " 0 30 2 * * ?")//每天2.30执行一次
    @Scheduled(cron = " 0 30 2 * * ?")//每天2.30执行一次
    //或直接指定时间间隔,例如:5秒
    //@Scheduled(fixedRate=5000)
    private void configureTasks() {