クォーツプラグイン(quartz2-0.2.2)をインストールし、grails-1.3.7を使用しています。
次に、「grails create-job」を使用してジョブクラスを作成し、テストとして小さなメッセージを出力するように変更しました。
class ImportFilesJob {
def startDelay = 100000L
def cronExpression = "0 30 22 * * ?"
def execute() {
log.info"ImportFilesJob start!"
println "ImportFilesJob start!"
Date runDate = DateUtils.today
long start = System.currentTimeMillis()
long end = System.currentTimeMillis()
log.info "Finished ImportFilesJob in ${end - start} millisec."
println"Finished ImportFilesJob in ${end - start} millisec."
}
}
今、私は仕事が毎日午後10時30分に始まることを期待しています。
しかし、そうではありません...
私は何かが恋しいですか?
助けてくれてありがとう。
ニミー