Compare commits
No commits in common. "465083443f212d7b012f36c1ec3553d685a5aa93" and "24505335b328b5c1d273306d686489a1d1ef5188" have entirely different histories.
465083443f
...
24505335b3
@ -105,8 +105,7 @@ public class SchedulerInitializer {
|
||||
// CronTrigger 생성
|
||||
CronTrigger trigger = TriggerBuilder.newTrigger()
|
||||
.withIdentity(triggerKey)
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(schedule.getCronExpression())
|
||||
.withMisfireHandlingInstructionDoNothing())
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(schedule.getCronExpression()))
|
||||
.forJob(jobKey)
|
||||
.build();
|
||||
|
||||
|
||||
@ -272,8 +272,7 @@ public class ScheduleService {
|
||||
// CronTrigger 생성
|
||||
CronTrigger trigger = TriggerBuilder.newTrigger()
|
||||
.withIdentity(triggerKey)
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(entity.getCronExpression())
|
||||
.withMisfireHandlingInstructionDoNothing())
|
||||
.withSchedule(CronScheduleBuilder.cronSchedule(entity.getCronExpression()))
|
||||
.forJob(jobKey)
|
||||
.build();
|
||||
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user