This commit is contained in:
张良(004796)
2024-01-30 21:11:28 +08:00
parent 5cbed4c929
commit d4c0f477bd
10 changed files with 34 additions and 10 deletions

View File

@@ -0,0 +1,36 @@
package com.ruoyi.job;
import com.ruoyi.cai.manager.UserForbidManager;
import com.ruoyi.cai.service.SysPushService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
@Slf4j
public class ForbidJob {
@Autowired
private UserForbidManager userForbidManager;
@Autowired
private SysPushService sysPushService;
/**
* 每12小时执行一次
*/
@Scheduled(cron = "0 0 11,23 * * ? ")
public void checkForbid(){
try {
userForbidManager.checkAll();
}catch (Exception e){
log.error("黑名单失效检测失败!",e);
}
try {
sysPushService.checkAll();
}catch (Exception e){
log.error("系统推送定时任务检测失败!",e);
}
}
}