Grails 2.5.3 domain class with Collection of embedded objects

95 Views Asked by At

How can a Grails 2.5.3 domain class have a Collection property of embedded objects?

class Embedded {
    String a
    String b
}

@grails.persistence.Entity
class Domain {
    List<Embedded> embeddedList
}
0

There are 0 best solutions below