标签: grails map gorm nullable
我有一个带有地图对象的GORM域类。
class MyClass { Map<String, String> myMap static constraints = { ... } }
默认情况下,myMap中的值不可为空。有没有办法配置约束,使myMap中的值可以为空?
答案 0 :(得分:0)
static constraints = { myMap nullable: true }
请参阅documentation