Having problems with domain class mappings. The domains are as follows: User Domain class User extends SecUser {
I\'m using Grails 1.3.2 in NetBeans. I have a very simple unit test that fails with this error: No signature of method: com.maxrecall.maxrequire.domain.Release.save()
I am trying to add data to a database, in grails but get this error: Error 500: Executing action [getData] of controller [mgr.CollectDataEntryController] caused exception: groovy.lang.MissingMethodEx
I\'m using GORM from grails 1.2.1. No chance of upgrading at this point. This is not a grails app per se; rather it is a webapp that uses groovy and leverages GORM for easy domain model persistence.
I\'m curious about the support for database/GORM object caching provided by the Grails framework. What database caching is enabled by default?
I have two classes class Facebook { String fid String name User user static constraints = { user(nullable:false)
What are the possible solutions for stripping the trailing whitespace when mapping char fields in a legacy database?
Given the following example domains: class UserRole implements Seriali开发者_Python百科zable { User user
i have the following domain-class-entity: class AccountSupplier { static mapping = { table \'MY_TABLE\' version false
I have the following domain class: class AccountSupplier implem开发者_Python百科ents Serializable {