我知道如何在春季环境中安排任务:
<task:scheduler id="taskScheduler" pool-size="1" />
<task:scheduled-tasks scheduler="taskScheduler">
<task:scheduled ref="jobWatcher" method="run" cron="*/10 * * * * ?" />
</task:scheduled-tasks>
但是我的任务的 cron 可以在运行时配置,所以我需要在 java 代码中创建任务。在春季文档中: http: //docs.spring.io/spring/docs/3.0.x/reference/scheduling.html是这样的:
scheduler.schedule(task, new CronTrigger("* 15 9-17 * * MON-FRI"));
这就是我想要的,但我不知道他们在这个例子中如何创建调度程序以及他的课程是什么。请帮忙