0

Java spring scheduler quartz

I have old code with express schedule="*/10 * * * * *" i do not understand what does that mean ?

Even after readying the following file can't figure out what does above Cron expression do. http://quartz-scheduler.org/api/2.0.0/org/quartz/CronTrigger.html

4

2 に答える 2

3

つまり、10秒ごとに発射します。

毎分の10秒には、「10 * * ***」式を使用します。1分に1回発火しますが、「* / 10 * * ***」は1分に6回発火します。

于 2012-10-23T20:05:47.333 に答える
0

つまり、10秒ごとです。クォーツのcron式は秒で始まります。http://en.wikipedia.org/wiki/Cronを参照してください。

于 2012-10-23T20:05:34.357 に答える