deals with issues related to the definitions of domain model
I'm wondering if grails createCriteria supports group by multiple attributes like pure sql does. I'd like to list entries like …
grails grails-domain-classPROBLEM I know there is already a question in regards to this but I think that the issue that causes …
gorm grails-2.0 grails-plugin grails-domain-classI'm trying to set a default value for a Date field in a Domain class. I can use defaultValue in …
grails grails-domain-classI have a form to create a place. Depending of the country, the province (state, region) field is required or …
grails grails-domain-class grails-2.0 grails-validationI have a Groovy/Grails website that is being used to send data to Android clients via JSON. I have …
android grails groovy grails-domain-class grails-controllerI have this Grails 2.0.3 project wherein there are two models DomainA and DomainB and both are related to each other …
hibernate grails grails-domain-class hibernate-criteriaHaving below grails config: Datasource. environments { development { dataSource { dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', '' url = "jdbc:h2:…
grails grails-orm grails-2.0 grails-domain-class grails-2.3For now I have field "String firstName" it converted to "first_name" and i want "firstname" as default in Hibernate. …
groovy grails grails-domain-classWhen using command objects like: class UserCommand { String name static constraints = { name blank: false, unique: true, minSize: 3 } } you can use …
validation grails grails-2.0 grails-domain-class grails-validationI have a restriction so there could be no more than ConfigurationHolder.config.support.reminder.web.person.max object stored. …
grails grails-domain-class grails-validation