我正在使用 Spring Framework 安排任务,并通过特定于环境的属性文件设置 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" />