I've changed my classes a few times trying to get this. I keep getting a no owner defined between classes. I've tried putting the owner on both sides of the relationship, but with no effect. Here's the pertinent portions of the classes. I also tried marking both with belongsTo for the other class, but it still didn't work.
class Person {
String serialNumber
String personName
String password
static hasMany = [accounts:ClientAccount]
class ClientAccount {
String accountId
static hasMany = [productOrders: ProductOrder, people: Person]
static belongsTo = [person:Person]
I don't know what "owner" is, but your groovy certainly won't compile. You need to "close" the class definitions of Person and ClientAccount with '}'.