我正在从数据库中获取结果列表,但在我为每个对象调用“validate()”方法之前,该列表不会验证约束。
def temp = ConfigInfo.where { projectId == project }.findAll()
//at this stage domain class is not validated
temp.each {
println "validate" + it.validate()
println "has error" + it.hasErrors()
}
//in the above code block validate() is called, I don't want to do this.
// 是否可以自动配置它并且我得到验证的对象。
我不想调用 validate 方法。grails中是否有任何方法或配置可以自动验证域类。
请帮助我。