【发布时间】:2012-10-02 14:18:27
【问题描述】:
我已经实现了一个示例spring计划任务,applicationContext如下,
<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="cron" method="show" cron="0/10 * * * * ?"/>
<task:scheduled ref="cron" method="show2" cron="0/15 * * * * ?"/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>
如何停止这种调度方法?
【问题讨论】: