fire_point/src/main/java/com/xkrs/common/StaticScheduleTask.java

41 lines
1.1 KiB
Java
Raw Normal View History

2023-03-07 17:17:34 +08:00
package com.xkrs.common;
2023-03-08 11:17:16 +08:00
import com.xkrs.straw.utilsnew.FirePointSubscribeManager;
2023-03-07 20:26:26 +08:00
import com.xkrs.utils.DateTimeUtils;
import com.xkrs.utils.WDWxSendMsgUtil;
2023-03-07 17:17:34 +08:00
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import javax.annotation.Resource;
2023-03-07 20:26:26 +08:00
import java.time.LocalDateTime;
2023-03-07 17:17:34 +08:00
/**
2023-03-07 20:26:26 +08:00
* 定时任务
2023-03-07 17:17:34 +08:00
*/
@Configuration
@EnableScheduling
public class StaticScheduleTask {
@Resource
private FirePointSubscribeManager firePointSubscribeManager;
2023-03-07 17:21:34 +08:00
//每半小时更新一次订阅
@Scheduled(cron = "0 */30 * * * ?")
2023-03-07 17:17:34 +08:00
private void syncSubscribe() {
firePointSubscribeManager.autoSync();
}
2023-03-07 20:26:26 +08:00
//每小时更新一次订阅
@Scheduled(cron = "0 0 * * * ?")
private void testPushWeiXinMessage() {
try {
WDWxSendMsgUtil.sendMsg("18447024917@chatroom", "微信发消息测试 " + DateTimeUtils.localDateTimeToString(LocalDateTime.now()), 0);
} catch (Exception e) {
e.printStackTrace();
}
}
2023-03-07 17:17:34 +08:00
}