grails是否继承了很多关系?

时间:2013-02-08 19:14:23

标签: grails inheritance

有人能告诉我在下列情况下会发生什么吗?一个人是否会覆盖另一个或者他们都会受到尊重吗?

class Parent {
    static hasMany = [attributes: Attribute]
}

class Child extends Parent {
    static hasMany = [games: Game]
}

当我尝试使用类似于上面的代码运行我的应用程序时,它失败并显示“null”消息,这非常有用。 :)

1 个答案:

答案 0 :(得分:2)

其他因素导致了问题,而不是实际的代码本身。因此,为了提供我的问题的答案,儿童都支持许多关系。