I have in my models: class ContestParticipant{ static mapping = { id generator: \"uuid\" tablePerHierarchy false
imagine the following problem in grails you have some kind of audit trail domain class with numeric properties. For instance a class in which the current burndown value of your scrum project is writt
I\'ve got a domain class which I want to, at run time, do a database call to populate a list of objects as a property. I have a tree with a \'headMember\' property and that property is an object which
I have two domain classes with bidirectional one to one association: Domains class Nose { String str1 static belongsTo = [face:Face]
@Entity public class Contact{ List associations static hasMany[ associations:Contact ] static mapping[ associations cascade:\"all-delete-orphan\"
I have class A { String title static hasMany = [details: Detail] } class Detail { enum Type { ONE, TWO } String name
I\'d like to be able to paginate my database results with something like the CriteriaBuilder, but I need my results to be consistent as to a single point in time.
I am going to try to add some DROOLS into my Grails project.I have never used DROOLS before, and I intend to learn it within the context of Gr开发者_运维问答ails.Can anyone explain the difference or j
I have two domain-classes. class UsersAddThese { String someData } and class TheseAreConstantlyGenerated {
I have an internal requirement with nested domain classes where I want updates to a parent relationship to be propagated to children. A code example may make it clear: