0
votes
2answers
28 views
GORM list() to return superclass objects only
I have a simple object hierarchy, and I want to query each of the objects using list(). The problem is that because of polymorphism, Task.list() returns both instances of type Task and ComplexTask.
…
0
votes
2answers
32 views
Grails: querying a hasMany relationship
Hi,
In my Grails app I have the following domain classes
Foo {
String fooVal
static hasMany = [bars: Bars]
}
Bar {
String barVal
Foo foo
}
I want to find all instances of Foo that are …
0
votes
0answers
29 views
Grails optimistic locking strange behaviour
I've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update errors without resorting to …
1
vote
1answer
26 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 …
0
votes
2answers
54 views
Grails GORM Domain class relationship
Grails 1.1.1
Goovy 1.5.7
In a relationship such this:
Author 1 -- n Book n -- 1 Publisher
Defined in Grails:
class Author {
String firstName
String lastName
static hasMany = [books: …
0
votes
4answers
603 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 define is between User …
0
votes
1answer
69 views
Grails GORM problem: Object references an unsaved transient instance
The Grails code below throws the following exception when trying to .save() the Foo object:
org.hibernate.TransientObjectException/
org.springframework.dao.InvalidDataAccessApiUsageException:
object …
1
vote
1answer
50 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 …
0
votes
1answer
70 views
Disabling locking for non-critical Grails/GORM domain classes
Assume the following code in a Grails controller:
def action = {
ClassName o = ClassName.findByFoo(params.foo)
if (o) {
o.counter += 1
}
}
By default Grails uses optimistic locking via …
1
vote
2answers
171 views
Groovy on Grails: 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 constraints …
1
vote
1answer
44 views
Groovy on Grails: GORM and BitSets?
I don't see anything in the official documentation about unsupported persistence data types, so I'm working under the assumption that types available in the Groovy language should be handled. However, …
0
votes
2answers
46 views
Sorting Objects Based on Custom Domain Class Methods
I have a domain class, in which I've defined some methods which give the object a score based on different algorithms (eg. popularity).
I now want to retrieve a list of these objects sorted by one of …
0
votes
3answers
76 views
Hibernate/GORM: collection was not processed by flush()
Hi,
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
…
0
votes
2answers
140 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) :
…
1
vote
1answer
158 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
The problem: How do I …
