|
|
|
@ -27,9 +27,9 @@ public abstract class AbstractQuartzJob implements Job { |
|
|
|
preJob(); |
|
|
|
doExecute(context, sysJob); |
|
|
|
postJob(sysJob, null); |
|
|
|
} catch (Exception exception) { |
|
|
|
logger.error("[GABRIEL] Job exec exception: {}", exception.getMessage()); |
|
|
|
this.postJob(sysJob, exception); |
|
|
|
} catch (Exception e) { |
|
|
|
logger.error("[GABRIEL] Job execute exception", e); |
|
|
|
this.postJob(sysJob, e); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|