提交 | 用户 | 时间 | ||
fd2207 | 1 | package com.jcdm.quartz.util; |
懒 | 2 | |
3 | import org.quartz.JobExecutionContext; | |
4 | import com.jcdm.quartz.domain.SysJob; | |
5 | ||
6 | /** | |
7 | * 定时任务处理(允许并发执行) | |
8 | * | |
9 | * @author jc | |
10 | * | |
11 | */ | |
12 | public class QuartzJobExecution extends AbstractQuartzJob | |
13 | { | |
14 | @Override | |
15 | protected void doExecute(JobExecutionContext context, SysJob sysJob) throws Exception | |
16 | { | |
17 | JobInvokeUtil.invokeMethod(sysJob); | |
18 | } | |
19 | } |