GORM:域映射值的可空约束

时间:2012-10-15 14:56:08

标签: grails map gorm nullable

我有一个带有地图对象的GORM域类。

class MyClass {
    Map<String, String> myMap

    static constraints = { ... }
}

默认情况下,myMap中的值不可为空。有没有办法配置约束,使myMap中的值可以为空?

1 个答案:

答案 0 :(得分:0)

static constraints = {
    myMap nullable: true
}

请参阅documentation