Tagged Questions
GORM is Grails' object relational mapping (ORM) implementation.
19
votes
3answers
645 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 ...
13
votes
2answers
371 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 ...
12
votes
4answers
239 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 ...
8
votes
2answers
2k 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 ...
7
votes
1answer
941 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 ...
7
votes
2answers
1k 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 ...
6
votes
1answer
852 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
340 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
3answers
3k 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
...
6
votes
3answers
7k 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 ...
6
votes
2answers
4k 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
4answers
323 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 ...
5
votes
0answers
110 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
1answer
302 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: ...
5
votes
3answers
288 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 ...
5
votes
1answer
130 views
How to share Spring Security classes between a Grails app and a Java app?
I need to use the Spring Security User, Role/Authority and the UserRole-join classes both in a Grails application and a Java app.
Where and how should I implement/generate these classes?
If I use ...
5
votes
2answers
663 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 ...
5
votes
3answers
6k 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);
...
5
votes
2answers
3k 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
36 views
GNUstep/Objective-c and nib files
I don't think I fully understand how the objects and their source file interact with Gorm. When you subclass a class like NSObject, it seems to store a snapshot of that object according to how you ...
4
votes
2answers
100 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 ...
4
votes
2answers
110 views
Grails select will not return correct data
This a continuation of this question.
I have an Address class which contains basic street address information. I also have a User class which has the attributes physicalAddress, mailingAddress, ...
4
votes
1answer
96 views
Need ideas in designing Domain classes Grails
I am learning Grails, I am trying to build a small application. And for now I am working on the registration part.
There are 3 different views for registration process
1) As an employee my ...
4
votes
2answers
615 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 ...
4
votes
2answers
134 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?
4
votes
1answer
1k 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
2answers
1k views
How do you persist a collection of Enums in Grails?
Any ideas on how to persist a collection of enums in Grails?
Groovy enum:
public enum MyEnum {
AAA('Aaa'),
BEE('Bee'),
CEE('Cee')
String description
MyEnum(String description) {
...
4
votes
3answers
3k 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 ...
3
votes
1answer
26 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 ...
3
votes
3answers
59 views
Grails best way to iterate all ids of a domain class
I have code like this:
Book.list().each {
// real code actually does something more useful
println "My id is " + it.id
}
It strikes me as a bit of a waste that the entire object of each Book is ...
3
votes
2answers
114 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 ...
3
votes
1answer
114 views
How to get nullable Constraints with Grails 2.0?
I'm using grails 2.0 with mysql and i want some Domain attributes to be nullable.
In my domain class i did:
static constraints = {
counter(nullable: true)
competitors(nullable: true)
}
...
3
votes
1answer
76 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?
3
votes
1answer
60 views
Where to place, and how to access a jQuery plugin in a Grails application?
My question is similar to this question. I am wondering where I would place a jQuery plugin in my Grails application, specifically the jQuery numeric plugin.
Once I have that plugin in the proper ...
3
votes
2answers
247 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 ...
3
votes
1answer
206 views
How to do safe inserts using GORM for Mongo's low-level API?
I am trying to do a safe insert using GORM for Mongo's low-level API.
I have reproduced the problem in a clean Grails project like follows:
Create a new Grails project
Uninstall the Hibernate ...
3
votes
3answers
175 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 ...
3
votes
2answers
161 views
Grails / Gorm : Difference between delcaring object and describing relationship?
Thanks in advance for your help.
I'm having trouble understanding the difference between declaring a domain-object in another domain and specifying the relationship between the domains. I've read ...
3
votes
1answer
190 views
Grails GORM on multiple Forms
Usually I'm using One-to-many relationship by this way :
class Study {
static hasMany = [ crfs : Crf ]
String name
...
}
class Crf {
String title
String info
...
}
I can extend ...
3
votes
2answers
508 views
Grails: how to set a meta-constraint on domain class property?
I have a Contact class that belongs to a Subscription and I want to set a hypothetic readonly constraint on the subscription property, to be consumed in the scaffold templates.
The class looks like
...
3
votes
2answers
207 views
Can I append a closure to another in Groovy?
I have two very similar methods in Grails, something like "calculate statistics by os" and "calculate statistics by browser" - effectively both prepare some things, then run a similar query on the DB, ...
3
votes
1answer
544 views
Grails GORM and MYSQL cascade delete problem
I have a table User that has many child tables defined in User class under the static hasMany
grails.
I have no problem when doing User.get(3).delete() in grails. It automatically delete that user ...
3
votes
1answer
219 views
GORM events not firing in integration tests
Trying to integration test Grails GORM delete on an object with beforeDelete event. Problem is that the beforeDelete event is not being fired in Integration Tests:
class ChallengeMembershipTests ...
3
votes
3answers
432 views
Using an existing GORM data model in standalone Java app
I have an existing Grails app and a separate, existing Java app. I would like the Java app to access the same database schema as the Grails app. Is there a way I can rip out the domain classes and ...
3
votes
1answer
694 views
Grails domain class query - how can I find by fields that link to another domain class?
Lets say I have two domain classes:
class User {
String name
Role role
}
class Role {
String name
static belongsTo = [user: User]
}
and I create some records:
def r1 = new Role(name: ...
3
votes
3answers
728 views
Grails / GORM, Disable First-level Cache
Suppose I have the following Domain class mapping to a legacy table, utilizing read-only second-level cache, and having a transient field:
class DomainObject {
static def transients = ['userId']
...
3
votes
3answers
3k views
How to do Group By in grails to order by Count(*)
How do I translate:
SELECT COUNT(*) AS `count`, `a` FROM `b` GROUP BY `a` ORDER BY `a`
into grails or gorm query?
3
votes
1answer
625 views
Result set mapping in Grails / GORM
I want to map the result of a native SQL query to a simple bean in grails, similar to what the @SqlResultSetMapping annotation does.
For example, given a query
select x.foo, y.bar, z.baz from ...
3
votes
2answers
2k 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 ...
3
votes
1answer
600 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 = ...