I\'ve got an issue with Grails where I have a test app with: class Artist { static constraints = { name()
I have a Skill class, which hasMany RoleSkills. I have a RoleSkills class which belongsTo Role and Skill
Is there a way of telling GORM not to pers开发者_运维百科ist a property? I\'m planning to define a confirm password property on my User class that I\'ll use for validation, but shouldn\'t be persisted
I have the project as set-up below. I am trying to delete a project, and I get the following: 2010-09-29 11:45:22,902 [http-8080-1] ERROR errors.GrailsExceptionResolver- deleted object would be re-sa
Is it possible to write your own validator in grails that will return a valid object? Something like: static constra开发者_开发百科ints = {
I\'m new to grails and receive the following error: No signature of method: Something.findAll() is applicable for argument types: (java.lang.String, java.util.ArrayList) values: [from Something AS s W
For the life of me I cannot seem to get relationships to work on mapped tables with Grails. I have two domains I am trying to join, Resources and Cassettes. A Resource can have many Cassettes.
As I noticed in the answers of another question there are a few problems when testing finder methods in GORM.
I can write: def c = Transaction.createCr开发者_运维知识库iteria() def transactions = c.list {
This solution works but performance is lower than expected.A query returning 200K rows takes several minutes and pegs the CPU on my dev box. Running the same* query in query analyzer returns all resul