0

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

class MyClass {
    Map<String, String> myMap

    static constraints = { ... }
}

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

4

1 回答 1

0
static constraints = {
    myMap nullable: true
}

文档

于 2012-10-15T15:33:06.623 回答