GORM is Grails' object relational mapping (ORM) implementation.
From the Grails belongsTo documentation, what is the use of class Book { static belongsTo = Author } What is the impact of …
grails gorm belongs-toI am using Grails 2.1.1 and MySQL 5.5.27 Community Server. I need to have a Domain class field generate a TEXT or …
mysql grails gorm grails-2.0I'm very close to a solution but anything is still wrong, hope to get help, thanks in advance. I have …
grails foreign-keys gorm composite-keyI'm fighting to get the following mapping working in Grails 1.3.1 and MySQL: class Login { int id String email static mappings = { …
grails gormI am currently developing a Grails Application and I am working with the Spring Security and UI plug-ins. I have …
grails gorm save domain-modelWhere are the most common places where you've gotten an org.hibernate.LazyInitializationException in Grails, what was the cause and …
hibernate grails gorm lazy-initializationLet's say I have a grails domain class that looks like class Person { Address address } I could also declare it …
grails foreign-keys gorm has-one