我是Quartz调度的新手,我已经掌握了基础知识。但是我在使用Quartz持久化数据模型类实例时遇到了麻烦。这是我的问题的简化版本:
class PlannedRequestsJob {
static triggers = {
cron name: 'cronTrigger', startDelay:1000, cronExpression: '0/6 * * * * ?'
}
def execute(){
def contactInstance = new Contact()
contactInstance.realname = 'John Doe'
contactInstance.save()
print "Quartz job"
}
}
此示例每6秒打印一次文本 Quartz作业 ,但不会创建新的域实例。我怎样才能做到这一点?
答案 0 :(得分:2)
如果你显示你的Contact
类的代码会有很大的帮助,但即使没有这些信息,我也会打赌你欠一分钱你的验证限制失败。
要查看谁赢了赌注,请将您的代码更改为:
def execute(){
def contactInstance = new Contact()
contactInstance.realname = 'John Doe'
if (!contactInstance.save()) {
println "Save failed due to errors: $contactInstance.errors"
}
print "Quartz job"
}
如果我是对的,你应该在控制台中看到一条消息,说明哪个约束失败了。您可以将我的奖金直接存入我的银行账户 - 我会告诉您详细信息。