标签: java spring spring-batch scheduler jobs
我用
CommandLineJobRunnerWrapper
作为主要班级。对于运行工作
SimpleJobLauncher
执行作业一次。如何安排它执行,例如每天上午10点? 因为现在应用程序在方法执行完毕后立即退出。 我尝试过使用spring scheduler但没有成功。
答案 0 :(得分:1)
您可以使用Scheduled注释
@Scheduled(cron="0 0 10 * * MON-FRI")
关于你的方法。