我使用的调度Spring框架的一个任务,并将通过环境的具体属性文件设置一个cron值。 我正在寻找一种方法,通过一个属性,使只有某些环境中运行这个任务来禁用此任务。
<task:scheduled-tasks>
<task:scheduled ref="theClass" method="theMethod" cron="${scheduler.cron}" />
</task:scheduled-tasks>
<bean id="theClass" class="com.test.TheClass" scope="prototype" />