Maintaining both sides of self-referential many-to-many relationship in Grails domain object

試著忘記壹切 提交于 2019-12-05 02:46:05

问题


I'm having some problems getting a many-to-many relationship working in grails. Is there anything obviously wrong with the following:

class Person {
    static hasMany = [friends: Person]
    static mappedBy = [friends: 'friends']

    String name
    List friends = []

    String toString() {
        return this.name
    }
}

class BootStrap {
     def init = { servletContext ->
        Person bob = new Person(name: 'bob').save()
        Person jaq = new Person(name: 'jaq').save()
        jaq.friends << bob

        println "Bob's friends: ${bob.friends}"
        println "Jaq's friends: ${jaq.friends}"
     }
} 

I'd expect Bob to be friends with Jaq and vice-versa, but I get the following output at startup:

Running Grails application..
Bob's friends: []
Jaq's friends: [Bob]

(I'm using Grails 1.2.0)


回答1:


This seems to work:

class Person {
    static hasMany   = [ friends: Person ]
    static mappedBy  = [ friends: 'friends' ]
    String name

    String toString() {
        name
    }
}

and then in the BootStrap:

class BootStrap {
     def init = { servletContext ->
        Person bob = new Person(name: 'bob').save()
        Person jaq = new Person(name: 'jaq').save()

        jaq.addToFriends( bob )

        println "Bob's friends: ${bob.friends}"
        println "Jaq's friends: ${jaq.friends}"
     }
} 

I get the following:

Running Grails application..
Bob's friends: [jaq]
Jaq's friends: [bob]


来源:https://stackoverflow.com/questions/2517390/maintaining-both-sides-of-self-referential-many-to-many-relationship-in-grails-d

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!