当前位置: 代码迷 >> 综合 >> JAVA——使用Spring Boot Scheduled时注入simple-robot Bot解决方案
  详细解决方案

JAVA——使用Spring Boot Scheduled时注入simple-robot Bot解决方案

热度:98   发布时间:2024-03-09 10:38:32.0

官方文档 

simple-robot 2.0 bot开发文档

simple-robot 机器人开发者使用文档

解决方案 

package cn.edu.zstu.myzstu.robot.qq.quartz;import cn.edu.zstu.myzstu.robot.qq.service.IHealthDeclarationService;
import com.forte.qqrobot.bot.BotManager;
import com.forte.qqrobot.sender.MsgSender;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;/*** @Author ShenTuZhiGang* @Version 1.0.0* @Date 2020-07-12 21:18*/
@Component
public class HealthDeclarationWarm{@Autowiredprivate BotManager botManager;//@Override@Scheduled(cron = "0 0 8,9,10,11 * * *")public void execute() {MsgSender sender = botManager.getBot("314").getSender();}
}

参考文章

simple-robot 2.0 bot开发文档

simple-robot 机器人开发者使用文档