zioinfo-mail/workspace/zioinfo-esn/ESN_DAEMON_EMART/bin/main/schedule.xml
DESKTOP-TKLFCPR\ython 371f77e7ab
Some checks failed
GUARDiA CI / Python Lint & Import Test (push) Has been cancelled
GUARDiA CI / Validate Install Scripts (push) Has been cancelled
GUARDiA CI / PR Validation Summary (push) Has been cancelled
fix(enhance-v4): APK QR 버그 수정 + 웹메일 라우터 수정
2026-06-02 20:23:55 +09:00

24 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd">
<task:scheduled-tasks scheduler="batchScheduler">
<task:scheduled ref="batchServiceImpl" method="posCvtStatusCheck" cron="20 * * * * *" />
<task:scheduled ref="batchServiceImpl" method="hCoreStatusCheck" cron="0 * * * * *" />
<task:scheduled ref="batchServiceImpl" method="userPwdExpireCheck" cron="0 01 00 * * *" />
<task:scheduled ref="batchServiceImpl" method="hCoreRestartAlarmReset" cron="0 02 00 * * *" />
<task:scheduled ref="batchServiceImpl" method="amsAlarmWrite" cron="40 * * * * *" />
<task:scheduled ref="batchServiceImpl" method="databaseAlarmCheck" cron="35 * * * * *" />
<task:scheduled ref="batchServiceImpl" method="otherAlarmCheck" cron="25 * * * * *" />
<task:scheduled ref="batchServiceImpl" method="dailyAlarmCheck" cron="00 30 07 * * *" />
<task:scheduled ref="batchServiceImpl" method="dailyEventInfoAlarmCheck" cron="00 40 07 * * *" />
<task:scheduled ref="batchServiceImpl" method="dailyEventInfoAlarmCheck" cron="00 50 07 * * *" />
<task:scheduled ref="batchServiceImpl" method="dailyEventInfoAlarmCheck" cron="00 00 08 * * *" />
<task:scheduled ref="batchServiceImpl" method="dailyBiztpAlarmCheck" cron="00 30 08 * * *" />
</task:scheduled-tasks>
<task:scheduler id="batchScheduler"/>
</beans>