24 lines
1.7 KiB
XML
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> |