I\'m writing some named queries for my domain classes in Grails and I\'ve hit a blocker. Given the following domain class:
Hello I have two domain classes as following class Users { String password String firstName String lastName
I\'m trying to load a list of Evaluations in a class named Contributor but I\'m missing something as I cannot get my test passing.
I am using an older version of grails (1.1.1) and I am working on a legacy application for a government client.
First time here, and new to Grails, I have a weird issue with a one-to-many relationship. I\'m creating a Grails application to provide services to a website and smartphone applications.
I am working on grails application. I must use H2 for development and Oracle for testing and production. I must use separate sequences for each domain class/table when using Oracle so I used the follo
I have a Grails project that is using Hibernate XML. The Hibernate file are all in conf/hibernate/[DomainName].hbm.xml and the matching source domain files are in src/groovy/[DomainName].groovyI keep
I have a legacy database that has a Hibernate join in it: <join table=\"events_sub_seasons\" optional=\"false\">
having the domain classes: class A { Date dateCreated static hasMany = [b:B] ... } class B { String name String value
I am developing an application which queries data from an XML file and creates multiple objects with that data.