0
votes
2answers
32 views
Found shared references to a collection org.hibernate.HibernateException
Hi,
I got this error message :
error: Found shared references to a collection: Person.relatedPersons
when I tried to save addToRelatedPersons(anotherPerson) :
person.addToRelate …
2
votes
3answers
73 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 …
1
vote
1answer
38 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 …
1
vote
1answer
40 views
In Grails, how do I declare a SQL Server Schema name for a Domain Class?
I have recently started reading up on Grails and would like to use SQL Server security schemas to group tables generated by GORM. However, I cannot seem to find a reference explain …
1
vote
2answers
112 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+ …
0
votes
3answers
393 views
How to setup one-to-many unidirectional mapping for grails application on GAE ?
I try to perform testing on one-to-many unidirectional mapping for grails application on google app engine (GAE) using JPA. The one-to-many unidirectional mapping I attempt to defi …
1
vote
1answer
119 views
Grails Hibernate Session Read Only
Hi. I have two grails servers:
Server - has read/write access to the database
Web - has read-only access to the database, and for every write it sends a request to the server
T …
1
vote
1answer
47 views
Hibernate transaction boundaries
Hi,
I'm using Hibernate (in a Grails app) and the transactional boundaries are service methods, i.e. every time a service method is called a transaction starts, and every time a s …
0
votes
1answer
93 views
How to override addTo* and RemoveFrom* GORM/Grails methods ?
I tried to override the dynamic method addTo* provided by Grails/GORM but it doesn't seem to work.
Here is the code :
class Match {
static hasMany = [players: Player, matchPl …
0
votes
1answer
52 views
Select all events from a month in grails
I am new to groovy/grails, and I'm trying to to do a criteria search that finds all posts for a month, basically like this:
def getUserMinutesForYear(User user, Date date){
D …
1
vote
1answer
87 views
eager-loading queries with GORM/Hibernate
Hi,
My Grails app has the following domain objects
class ProductType {
String name
static hasMany = [attributes: Attribute]
}
class Attribute {
String name
…
0
votes
2answers
90 views
GORM Hibernate query
Hi,
I have the following Grails domain objects
class ProductType {
String name
static hasMany = [attributes: Attribute]
}
class Attribute {
Boolean mandatory = fals …
0
votes
2answers
61 views
Finding the first match - alternative to DomainClass.findAll()[0]
Is there a shorter/cleaner way than DomainClass.findAll()[0] to retrieve the first domain object in the set of domain objects that would normally be retrieved by findAll()?
Ideal …
3
votes
3answers
127 views
Groovy domain mapping
Hi!
I have a to save a pdf report into an Oracle DB.
The report's dataType is a byteArray.
The domain definition is as follows:
static constraints = {
report(nullable:false)
co …
2
votes
2answers
139 views
Eager Loading with Many-to-Many relationship - Grails (GORM)
Each book can have many authors. And each author can author many books.
class Book {
static belongsTo = Author
static hasMany = [authors:Author]
}
class Author {
static …
