I have a fresh grails 1.3.7 with two domain classes with some tricky relationships:
class NodePoint {
String name
static mappedBy=[outgoingConnections:'startPoint',incomingConnections:'endPoint']
static hasMany=[outgoingConnections:Connections, incomingConnections:Connections]
}
class Connections {
NodePoint startPoint
NodePoint endPoint
}
I am doing something wrong in the bootstrap (project is "todaysstupidproblem"):
import todaysstupidproblem.*
class BootStrap {
def init = { servletContext ->
def startingPoint = new NodePoint(name:"This Point").save(failOnError:true)
def endingPoint = new NodePoint(name:"That Point").save(failOnError:true)
def someConnex = new Connections(startPoint:startingPoint,endPoint:endingPoint).save(failOnError:true, flush:true)
println someConnex
println "WHY ISNT THERE SOMETHING BETWEEN THESE???"
startingPoint.outgoingConnections.each{
println "WHY AM I NOT SEEING THIS!!?!?!?!?"
println "Where did the outgoingConnections go?"
println it
}
println "HIBERNATE FTL :("
}
def destroy = {
}
}
Is printing:
Running Grails application..
todaysstupidproblem.Connections : 1
WHY ISNT THERE SOMETHING BETWEEN THESE???
HIBERNATE FTL :(
Server running. Browse to http://localhost:8080/todaysstupidproblem
Why isn't the connection printing?
