2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-05-12 9f21969b69703a35bde9d659be19f3e39795010d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.sandu.common.quartz;
 
import org.quartz.JobExecutionContext;
import org.springframework.scheduling.quartz.QuartzJobBean;
 
/**
 * @author chenjiantian
 * @date 2021/12/15 10:28
 */
public class ExecutionJob extends QuartzJobBean {
 
    @Override
    protected void executeInternal(JobExecutionContext context) {
        System.out.println("执行任务");
        System.out.println(Thread.currentThread().toString());
    }
}