GORM is Grails' object relational mapping (ORM) implementation.

learn more… | top users | synonyms (2)

14
votes
1answer
4k views

Retrieving a list of GORM persistent properties for a domain

What's the best/easiest way to get a list of the persistent properties associated with a given GORM domain object? I can get the list of all properties, but this list contains non-persistent fields ...
6
votes
2answers
5k views

Grails/GORM: The meaning of belongsTo in 1:N relationships

In an ordinary one-to-many mapping the "one"-side is the owner of the association. Why would anyone use the belongsTo-mapping for such a mapping? Am I missing some side-effect of specifying belongsTo? ...
4
votes
1answer
4k views

Using groupProperty and countDistinct in Grails Criteria

I'm using Grails 1.2.4. I would like to know on how can I sort by "countDistinct" (descending) and with groupProperty inside a projections. Here are my domains: class Transaction { static ...
12
votes
2answers
1k views

Grails query not using GORM

What is the best way to query for something without using GORM in grails? I have query that doesn't seem to fit in the GORM model, the query has a subquery and a computed field. I posted on ...
1
vote
2answers
4k views

GRAILS: Find all children in a self-referenced one-to-many relationship

In grails, How would one find all the children in a one-to-many relationship e.g., class Employee { static hasMany = [ subordinates: Employee ] static belongsTo = [ manager: Employee ] } ...
1
vote
1answer
909 views

Grails group by date

I have a domain class with a date-property. class Transaction { LocalDate time BigDecimal amount } How can I query for the sum of all transactions grouped by month? I can“t find any ...
2
votes
2answers
859 views

Grails request parameters encoding issue in Tomcat

My grails app will not decode request parameters correctly. In config.groovy: grails.views.gsp.encoding = "UTF-8" grails.converters.encoding = "UTF-8" All my gsp's use contentType="text/html; ...
1
vote
1answer
249 views

Grails 1.0.3 Upgrade Problems

I am trying to upgrade a Grails 1.0.3 project to 1.3.7 and am having what I believe are related issues. The old project has Hibernate xml files in conf/hibernate/Domain1.hbm.xml I am guessing that ...
13
votes
4answers
15k views

Found shared references to a collection org.hibernate.HibernateException

I got this error message : error: Found shared references to a collection: Person.relatedPersons when I tried to save addToRelatedPersons(anotherPerson) : person.addToRelatedPersons(anotherPerson); ...
0
votes
2answers
1k views

Using lazy property fetching in Grails / Gorm

is there any way to use lazy property fetching in Grails / Gorm ? somtehing like: @Basic(fetch = FetchType.LAZY) annotation ( it also works with left join fetch?) (for example lazy loading of an ...
10
votes
2answers
4k views

Using Grails GORM standalone

I'm currently wondering how it is possible to use the Groovy ORM Layer from Grails standalone outside of the Grails Framework. There is a Documentation Entry for doing so, but the ZIP file only links ...
2
votes
6answers
5k views

GORM createCriteria and list do not return the same results : what can I do?

I am using Nimble and Shiro for my security frameworks and I've just come accross a GORM bug. Indeed : User.createCriteria().list { maxResults 10 } returns 10 users whereas User.list(max: 10) ...
4
votes
1answer
4k views

Grails/GORM default fetch strategy: When to set fetchMode to “eager”? (eager vs. lazy)

What are some general guidelines on when to set fetchMode to "eager" in a domain class? Pros and cons of fetchMode "eager" vs. the default "lazy"? Please include some specific examples/use-cases ...
3
votes
2answers
1k views

grails limited table creation

I'd like to use the Grails feature for creating/updating database tables on a limited basis. Specifically, I'd like Grails to manage some tables, but not all. Is there a way to limit the tables ...
4
votes
1answer
1k views

How to log sql in grails 1.3.7

I try to configure logs for sql in grails with logSql=true in datasource (test env) but nothing is displayed in test output. I read this post but It's not working. How to log sql statements in ...
0
votes
2answers
1k views

Grails one to many relationship view

I have two grails domain classes Class MultipleChoiceQuestion { String question static constraints = { ... } static hasMany = [options:MultipleChoiceOption] } and ...
4
votes
2answers
2k views

Telling GORM not to persist a property

Is there a way of telling GORM not to persist 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.
2
votes
1answer
115 views

Does removing a property from a domain class cause an automatic update to the schema, whereby the corresponding column is dropped?

I'm sort of new at Grails. I've worked with it a bit, but not that much. I'm pretty familiar with Java though. My question is regarding schema updates. I understand that Grails creates Hibernate ...
0
votes
1answer
116 views

How to prevent unwanted update of persisted objects?

I have a Load class and a Cargo class. An instance of Load contains an instance of Cargo. class Load { Cargo cargo } class Cargo { String name BigDecimal cost } Lets say that the name ...
9
votes
2answers
8k views

Grails Enum Mapping

in Grails, Is there a way to limit the size of the column to which the enum is mapped. In the following example, i would like the column type to be char(2) enum FooStatus { BAR('br'), TAR('tr') ...
16
votes
1answer
2k views

Hibernate 2nd level cache in a Grails app

Part I In a Grails app, I understand that you enable the 2nd level cache per domain class by adding static mapping { cache true } By default the 2nd level cache is only used when get() is ...
4
votes
1answer
589 views

Grails update instead of delete

Is there an easy way in Grails to not allow deleting for any Domain Class? And rather have a delete flag in each domain which gets updated whenever something is deleted. Also, in effect all the ...
2
votes
1answer
367 views

Grails - mapping a many-to-many parents/children relation to a single join table

My question is based on the following (simplified) Grails domain class class Dimension { String name static hasMany = [ children: Dimension, parents: Dimension ] } Is ...
6
votes
1answer
377 views

How do I search for elements whose collection contains another element in Grails?

Let's say I have a domain class called "User" which can follow other "User" objects. It does so having a field specified as: def hasMany=[followedUsers:User] I need to do the reverse (find all User ...
2
votes
5answers
467 views

How to set uniqueness at DB level for a one-to-many association?

My problem is simple but I could not find any GORM syntax for this. Consider the following class: class Article { String text static hasMany = [tags: String] static constraints= { ...
5
votes
1answer
2k views

withCriteria two level deep association eager fetch grails

I'd like to eager load a structure, two levels deep in an association chain. Something along the lines of: class TopLevel { String name LevelOne levelOne } class LevelOne { String ...
4
votes
5answers
3k views

Multiple hasMany relationships to same domain class in Grails

I'm using Grails, and I have a domain model with multiple hasMany attributes to the same domain class, which looks like this: static hasMany = [ posts : Post, likes : Post, dislikes : Post ] The ...
4
votes
1answer
4k views

how to get distinct results using Projections and Criteria

I am trying to load distinct Parents using Criteria in Grails. The query is as following Query: def criteria = Parent.createCriteria(); results = criteria.list(max:params.max, ...
4
votes
3answers
5k views

grails deleted object would be re-saved by cascade error

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 ...
1
vote
2answers
661 views

Is it possible to map a table name for a domain object dynamically in grails?

I have a domain that looks something like class Foo { String name static mapping = { table 'foo' } } but I want to make is more like : static mapping = { table ...
1
vote
1answer
838 views

Grails domain class relationship to itself

I need a way to be able to have a domain class to have many of itself. In other words, there is a parent and child relationship. The table I'm working on has data and then a column called ...
10
votes
3answers
8k views

How do you bulk delete records in Grails/GORM?

I have a table which has records that need to be periodically cleared according to a set of criteria. I was expecting that I could use the criteria builder to just delete the records, but that fails ...
10
votes
3answers
12k views

Defining default sort-order in Grails/GORM

Let's say I have definied a User object using GORM. Each user can have zero or more Login:s. Each Login has a timestamp. When retrieving user.logins I want the logins to be sorted based on the value ...
7
votes
3answers
5k views

Hibernate/GORM: collection was not processed by flush()

I have an integration test in my Grails application that fails when I try to save an entity of type Member invitingMember.save(flush: true) This raises the following exception ...
4
votes
2answers
5k views

Abstract Classes in GORM Relationships

Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example: abstract class User { String email String password static ...
3
votes
3answers
707 views

How to encrypt/decrypt columns in a Grails domain class?

As i want to introduce some data security i was wondering if it is possible to encrypt/decrypt specific columns in a Grails domain class and if so what the easiest way is to achieve such a thing? ...
3
votes
1answer
1k views

eager-loading queries with GORM/Hibernate

My Grails app has the following domain objects class ProductType { String name static hasMany = [attributes: Attribute] } class Attribute { String name static belongsTo = ...
2
votes
1answer
376 views

belongsTo multiple Domain

I have 4 classes, incidents,problems, requests and another is Attachment. Every domain look like......... Class Incidents { // other fields static hasOne = [attachment: ...
2
votes
6answers
2k views

Joda time DateTime incorrectly stores in database

I'm storing JodaTime DateTime field to timestamptz column by using org.jadira.usertype:usertype.jodatime:1.9. App server has +4 time zone. DB server +9 time zone. new DateTime() results in ...
1
vote
3answers
985 views

Grails projection on arithmetic expression with executeQuery()?

I need to get a sum of all items sold per order per store. I am running a sum() on expression using executeQuery(). It works fine as shown below but I wanted to know if there is a better, groovier way ...
1
vote
1answer
179 views

How do I sort by a property on a nullable association in Grails?

I'm trying to sort a table of data. I have the following domain (paraphrased and example-ified): class Car { Engine engine static constraints = { engine nullable: true // poor ...
1
vote
1answer
979 views

How to implements tablePerHierarchy with disciminator in grails?

I have a class hirarchy : class Item {} class Participation extends Item{} class Contribution extends Participation{} class Question extends Participation{} I would like to have a table per class ...
1
vote
2answers
6k views

Grails: No signature of method findAll() is applicable for argument types: String, ArrayList

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 ...
0
votes
1answer
130 views

Grails: Raw SQL query in the current transaction

I am trying to execute a raw sql query using something similar to def dataSource; Sql sql = new Sql(dataSource); But, it seems that this runs in a separate transaction of its own. It therefore ...
0
votes
2answers
2k views

Using Postgresql with Grails : Missing sequence or table: hibernate_sequence

I'm having trouble with Grails 2.0 and Postgresql 9.1 I'm trying to map an existing database, with sequential ids. However, even without creating any class in the domain, I'm having the error : ...
7
votes
3answers
5k views

dateCreated, lastUpdated fields in Grails 2.0

I've got an application that was using Grails 1.3.7 which I've just migrated to Grails 2.0. The application makes use of the automatic dateCreated and lastUpdated fields to manage the timestamps ...
5
votes
1answer
732 views

MongoDB issues with Grails Scaffolding (do not occur in MySQL)

I tried using MongoDB 2.0.6 to replace MySQL 5.5.25 for a test Grails 2.1 App and am encountering some strange problems. Issues when using MongoDB but not MySQL: When using Scaffolding, I cannot ...
4
votes
2answers
348 views

Grails: field access with GORM

Hibernate uses method calls to get the values of domain class properties by default. How can I configure direct field access with GORM?
3
votes
2answers
548 views

How to fetch records in grails by max date and group at same time

I have a table that looks like this: id name shade date_created ---- ----- ------- --------------- 1 Red bright 10-28-2012 2 Orange light ...
3
votes
3answers
3k views

Grails: Projection on many tables?

I have some problems with projection in Grails. Could you please help me review them and suggest solutions for me? I want to query data on many tables which has many-to-one relationship and ...

1 2 3