materialJob:::02:30->04:50, bomJob:::02:40->05:20

This commit is contained in:
ysCha 2026-03-13 11:04:59 +09:00
parent 3a4dab2f48
commit 19250727e0

View File

@ -153,7 +153,7 @@ public class JobLauncherController {
*
*/
@Scheduled(cron = "0 30 02 * * *")
@Scheduled(cron = "0 50 04 * * *")
public String materialJob() throws JobInstanceAlreadyCompleteException, JobExecutionAlreadyRunningException, JobParametersInvalidException, JobRestartException {
return executeScheduledJob("materialJob");
@ -165,7 +165,7 @@ public class JobLauncherController {
*
*/
@Scheduled(cron = "0 40 02 * * *")
@Scheduled(cron = "0 20 05 * * *")
public String bomJob() throws JobInstanceAlreadyCompleteException, JobExecutionAlreadyRunningException, JobParametersInvalidException, JobRestartException {
return executeScheduledJob("bomJob");