Grails域是否可以继承?

时间:2010-11-14 09:53:33

标签: database-design grails entity-relationship gorm grails-domain-class

我正在尝试建模Person s的网络。 Person可以包含多个Favorites。这些最爱是固定不断扩展的。

static hasMany = [favorites : Favorite];

现在我想拥有Favorite域类的子项。在Favorite我有belongsTo映射:

static belongsTo = [person : Person];

现在在我的孩子班上:

class ColorFavorite extends Favorite
{
    String color;
}

这是可能的还是我想远远超出GORM?实现这样的东西的正确方法是什么?

1 个答案:

答案 0 :(得分:1)