How to run every 25 seconds in Quartz scheduler?

前端 未结 7 2254
悲哀的现实
悲哀的现实 2021-02-12 23:37

I am using the Quartz Scheduling API for Java. Could you help me to run every 25 seconds using cron-expression. It\'s just a delay. It does not have to start always at second 0.

7条回答
  •  长情又很酷
    2021-02-12 23:46

    */25 * * * * *
    


    - [wiki] http://en.wikipedia.org/wiki/Cron
    - [quartz tutorial] http://www.quartz-scheduler.org/docs/tutorial/TutorialLesson06.html

提交回复
热议问题