| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
- http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.0.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
- <!--超时自动确认收货-->
- <task:scheduled-tasks>
- <task:scheduled ref="OrderTask" method="autoConfirmOrderRevice" cron="0 0 1 * * ?"/>
- </task:scheduled-tasks>
- <!--每天零层清理上架的临时表-->
- <task:scheduled-tasks>
- <task:scheduled ref="releaseByBatchTask" method="autoCleanReleaseByBatch" cron="0 0 1 * * ?"/>
- </task:scheduled-tasks>
- <!--超时自动初评-->
- <task:scheduled-tasks>
- <task:scheduled ref="RateTask" method="autoRate" cron="0 0 1 * * ?"/>
- </task:scheduled-tasks>
- <!--超时自动追评-->
- <task:scheduled-tasks>
- <task:scheduled ref="RateTask" method="autoAfterRate" cron="0 0 1 * * ?"/>
- <!-- <task:scheduled ref="RateTask" method="autoAfterRate" cron="* */10 * * * ?"/>-->
- </task:scheduled-tasks>
- <!--批次过期自动下架-->
- <!--<task:scheduled-tasks>-->
- <!--<task:scheduled ref="CommodityTask" method="autoDownOverDueCommodity" cron="0 0 1 * * ?"/>-->
- <!--</task:scheduled-tasks>-->
- <task:scheduled-tasks>
- <task:scheduled ref="CommonTask" method="updateCount" cron="0 0 1 * * ?"/>
- </task:scheduled-tasks>
- <context:annotation-config />
- </beans>
|