Compare commits
2 커밋
24505335b3
...
465083443f
| 작성자 | SHA1 | 날짜 | |
|---|---|---|---|
| 465083443f | |||
| a6b7244f3d |
@ -105,7 +105,8 @@ public class SchedulerInitializer {
|
||||
// CronTrigger 생성
|
||||
CronTrigger trigger = TriggerBuilder.newTrigger()
|
||||
.withIdentity(triggerKey)
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(schedule.getCronExpression()))
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(schedule.getCronExpression())
|
||||
.withMisfireHandlingInstructionDoNothing())
|
||||
.forJob(jobKey)
|
||||
.build();
|
||||
|
||||
|
||||
@ -272,7 +272,8 @@ public class ScheduleService {
|
||||
// CronTrigger 생성
|
||||
CronTrigger trigger = TriggerBuilder.newTrigger()
|
||||
.withIdentity(triggerKey)
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(entity.getCronExpression()))
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(entity.getCronExpression())
|
||||
.withMisfireHandlingInstructionDoNothing())
|
||||
.forJob(jobKey)
|
||||
.build();
|
||||
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user