Java实现定时器(Quartz任务调度)--简易版

本文介绍了如何在Spring Boot项目中集成Quartz来实现定时任务,通过创建JobDetail和Trigger来配置任务和触发器,并演示了一个定时调用接口的例子,展示了@Scheduled注解的简单用法。
摘要由CSDN通过智能技术生成

一、导入依赖

<!--任务调度依赖-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-quartz</artifactId>
        </dependency>

二、具体实现

请添加图片描述
请添加图片描述
现在继承QuartzJobBean类一定要实现protected void executeInternal(JobExecutionContext jobExecutionContext) 方法了,要在该方法里面写自己要调用的接口。

import com.group.oayouth.entity.Message;
import com.group.oayouth.service.IMessageService;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.quartz.QuartzJobBean;

import java.time.LocalDateTime;

/**
 * 功能描述(Description):定时调用的方法
 */
public class jobTest extends QuartzJobBean {

    @Autowired
    private IMessageService messageService;

    @Override
    protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException {
            Message message=new Message();
            message.setCreateTime(LocalDateTime.now());
            message.setMsgContent("定时器测试");
            message.setReceiverId((long) 2);
            messageService.createMessage(message);
    }
}
import com.group.oayouth.schedule.job.jobTest;
import org.quartz.*;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 功能描述(Description):调度配置
 */
@Configuration
public class QuartzConfig {

    /**
     * 定时任务
     */
    @Bean
    public JobDetail timeOutDetail() {
        return JobBuilder.newJob(jobTest.class)
                .withIdentity("jobTest")
                .storeDurably()
                .build();

    }

    /**
     * 触发器
     */
    @Bean
    public Trigger timeOutTrigger() {
        //每隔3秒执行一次
        CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule("*/3 * * * * ?");

        //创建触发器
        return TriggerBuilder.newTrigger()
                .forJob(timeOutDetail())
                .withIdentity("timeOutTrigger")
                .startNow()
                .withSchedule(cronScheduleBuilder)
                .build();
    }
}

你要是不需要定时调用多个接口,业务上很少用到还能写成更简单,直接在定时调用的方法上加@Scheduled注解,如下图的@Scheduled(cron = "0/10 * * * * *")
请添加图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值