创建自定义验证器

时间:2013-11-05 17:55:00

标签: grails validation

我应该如何创建和配置验证程序类以将其用作域类约束?例如:

class Link {
    String url
    static constraints = { url url:true }
}

动机:Grails UrlValidator虽然有效,但不允许使用下划线字符,请参阅rfc2396, section 2.3. Unreserved Characters

1 个答案:

答案 0 :(得分:5)

您可以在src/groovy中使用必需的验证器(作为静态属性)使用实用程序类,并在相关的域类中引用它们。

//src/groovy
class MyValidators{
    static urlCheck = {url, obj ->
        //custom validation for url goes here.
    }
}

class Link {
    String url
    static constraints = { 
        url validator: MyValidators.urlCheck 
    }
}

如果不需要将验证器外部化为单独的实用程序类,则可以直接在域类中使用验证器:

static constraints = {
    url validator: {value, obj -> ...} 
}