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

learn more… | top users | synonyms (2)

31
votes
3answers
2k views

Binding JSON to nested Grails Domain Objects

I'm developing a RESTful interface which is used to provide JSON data for a JavaScript application. On the server side I use Grails 1.3.7 and use GORM Domain Objects for persistence. I implemented a ...
19
votes
3answers
1k views

Using JPA domain classes in Grails

I want to use a JPA domain model in an application developed using the latest Grails milestone (2.0.0.M1). The JPA domain classes are in the src\java directory of the application. Based on this blog ...
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 ...
15
votes
4answers
930 views

GORM for Rest (Grails)?

I am doing some research on Grails and writing about what the future holds for it.. Something interesting jumped out in the RoadMap (http://grails.org/Roadmap) GORM for REST Anyone with more ...
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 ...
14
votes
2answers
10k views

How to make MySQL work on grails 2.0

Grails 2.0 seems to have some changes to DataSource.groovy and I don't seem to be able to get mysql running as it was in 1.3.7 I did grails install-dependency mysql:mysql-connector-java:5.1.16 rather ...
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); ...
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 ...
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 ...
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 ...
10
votes
2answers
2k views

Composite foreign key columns in GORM

I need to customize the column names for composite foreign keys in GORM, and I didn't find any document that shows how to do it. I know how to customize PK columns, and how to customize a ...
9
votes
2answers
7k 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') ...
9
votes
3answers
5k views

Difference between findAll, getAll and list in Grails

With Grails there are several ways to do the same thing. Finds all of domain class instances: Book.findAll() Book.getAll() Book.list() Retrieves an instance of the domain class for the specified ...
9
votes
2answers
526 views

Persisting Maps and Lists of properties as JSON in Grails

EDIT: onload() method changed to afterLoad(): Otherwise objects might not be passed properly to the map. I am currently using some domain classes with a lot of dynamic, complex properties, that I ...
9
votes
1answer
301 views

Accessing grails/hibernate generated SQL for domain class

In my grails (1.3.7) application, I am using JDBC Template for bulk import of 1000s of records from a CSV file (since it's much faster than using vanilla GORM/hibernate, as you would expect). e.g. ...
8
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 ...
8
votes
1answer
5k views

GORM domain class properties default values

Maybe a silly question but where/how should I define default values for GORM domain class properties? For example when I'm creating a new Company object instance I want default value for property ...
8
votes
2answers
2k views

Why grails throwing null pointer exception while accessing hasMany relationship first time?

I have a strange problem. I have two domain classes User and Post with fields: class User { String name static hasMany = [posts: Post] static constraints = { } } and class Post { String ...
8
votes
1answer
3k views

Grails GORM composition or hasOne?

I'm a bit confused about the differences between using the static hasOne map and composing objects in domain classes. What are the differences between the two? ie. class DegreeProgram { String ...
7
votes
3answers
7k views

Why do I get a “Null value was assigned to a property of primitive type setter of” error message when using HibernateCriteriaBuilder in Grails

I get the following error when using a primitive attribute in my grails domain object: Null value was assigned to a property of primitive type setter of MyDomain.myAttribute ...
7
votes
4answers
4k views

Grails multi column indexes

Can someone explain how to define multi column indexes in Grails? The documentation is at best sparse. This for example does not seem to work at all: http://grails.org/GORM+Index+definitions I've ...
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 ...
7
votes
5answers
1k views

Overriding dateCreated for testing in Grails

Is there any way I can override the value of dateCreated field in my domain class without turning off auto timestamping? I need to test controller and I have to provide specific domain objects with ...
7
votes
1answer
687 views

Grails many-to-many belongsTo

I want a many-to-many relationship. Then i have to specify a belongsTo at one side like: static belongsTo = Answer But i already have specified a belongsTo as a Map: here the Code class Answer { ...
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? ...
6
votes
2answers
3k views

How to I bind a Hibernate Session to a thread in Grails?

I'm writing a multi-threaded application in Grails and the additional threads need access to GORM/Hibernate. When they try to access GORM I get the error "org.hibernate.HibernateException: No ...
6
votes
6answers
383 views

Controllers in Grails

I'm writing a small webapp in Grails and I have the following question regarding best practices for controller design and using GORM: I'm storing the user object in session.user. Currently all my ...
6
votes
3answers
4k 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 ...
6
votes
2answers
826 views

grails - tell me if anything is dirty?

Grails provides an isDirty method that can be called on domain objects. How would one modify the Grails domain model system, such that one could simply call a method, to find out if any domain ...
6
votes
1answer
2k views

Grails: Is there a way to have findAll() without a query but with pagination and sorting?

As I noticed in the answers of another question there are a few problems when testing finder methods in GORM. I want to get all objects from Something and have support for sorting and pagination, so I ...
6
votes
2answers
518 views

How much of Grails GORM to test?

Is there a "best practice" or defacto standard with how much of the GORM functionality one should test in the unit/functional tests? My take is that one should probably do most of the domain testing ...
6
votes
1answer
391 views

Benefits of object.get() vs object.read() in Grails

I was skimming some of the Grails documentation and found this bit about the read() method in Grails. If I'm understanding this correctly, you can pull a "read-only" version of an object from the ...
6
votes
1answer
344 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 ...
6
votes
1answer
824 views

Architecting a Neo4j-Based Application - stick to vanilla API using plain nodes & relationships or use Spring/GORM?

I'm hoping to hear from any of you who have architected and implemented a decent sized Neo4j app (10's millions nodes/rels) - and what your recommendations are particularly w.r.t modelling and the ...
6
votes
2answers
6k views

GORM in Grails and StaleObjectStateException

I'm writing a small Grails app, and I keep on getting StaleObjectStateException:s for about 1/10:th of the calls to "createfoo" when running the following rather simple code. Most probably I'm missing ...
6
votes
1answer
5k views

ORA-00972: identifier is too long - Best strategy to avoid it in Grails

I am getting "ORA-00972: identifier is too long" error while saving a domain class object. Caused by: org.hibernate.exception.SQLGrammarException: could not initialize a collection: ...
6
votes
3answers
667 views

Running Jasper Reports against an in-memory h2 datasource?

I'm trying to run jasper reports against a live and reporting database, but any reports run against the live database throw exceptions about not finding the right tables (although the default PUBLIC ...
6
votes
0answers
298 views

Should I convert my Grails domain relations to use Hibernate Bags? [closed]

In Grails 1.3.7 I've spent quite some time to convert my domain class relations according to Burt's suggestions in http://www.infoq.com/presentations/GORM-Performance Now, Grails 2 supports ...
5
votes
2answers
285 views

grails hasOne vs direct member variable

Let's say I have a grails domain class that looks like class Person { Address address } I could also declare it as class Person { static hasOne = [address:Address] } The second way would ...
5
votes
2answers
2k views

Grails/GORM “in” criteria

Is it possible to do an "in" criteria using the GORM criteria. I'm looking for the equivalent of the following SQL select * from Person where age in (20,21,22); If it was possible I guess the ...
5
votes
1answer
740 views

How to get the name of the table GORM object is mapped to?

Say I have something like: class Foo { static mapping = { table 'foo_table' } } How can I get the name of foo_table if I have a reference to an instance of this object?
5
votes
1answer
3k views

Do I ever need to explicitly flush GORM save calls in grails?

I have a strange situation which appears to indicate a GORM cacheing problem //begin with all book.status's as UNREAD Book.list().each { book.status = Status.READ ; book.save() } println ...
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 ...
5
votes
3answers
5k views

How To Make Transactions Work In Grails

Summary A parent can have many children. How do you write a service such that, if after adding a parent there is an error when adding a child, the entire transaction is rolled back. For example, add ...
5
votes
3answers
565 views

GORM: how to set datatype of a value in a Map

in my domain object i have a map: Map<String, String> stuff GORM automatically creates a table where the key and the value are varchar(255). i need the value to be LongText instead. How do ...
5
votes
2answers
553 views

Grails: Can I use domain objects when I don't want to save anything?

Some of my domain classes are getting rather rich: They implement an interesting comparable, might have plus, minus, multiply and div, many have some convenient getters which call services and ...
5
votes
1answer
654 views

Grails/Groovy domain classes inheritance cast

I have modeled my domain classes in Grails with inheritance as shown below. abstract class Profile{ } class Team extends Profile{ } class User extends Profile{ } class B{ static hasMany = ...
5
votes
2answers
645 views

Grails one-many mapping stalestaleexception on composite key

I use grails 2.0.0. I have three objects Member, Product and ProductType. Member has many Products and is a one-to-many relation. Product points to ProductType (reference table) and is a many-to-one ...
5
votes
2answers
2k views

MongoDB, Grails, and relationships

I was curious about how the MongoDB plugin for Grails would handle relationships. In order to test this I made a very simple application with two domain classes: Authors have two fields: String ...
5
votes
2answers
129 views

grails service with different scopes for persistence

I have one domain, in that domain more than 25 members are there. This members value will come from one form. But it feels bad to fill those too much fields. So I thought dividing input form into ...

1 2 3 4 5 29