0
votes
2answers
33 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
37 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
30 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
30 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
56 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
1answer
86 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
56 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
72 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
1answer
48 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
48 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 …
1
vote
2answers
185 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 …
0
votes
3answers
81 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
146 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) :
…
0
votes
0answers
25 views
Bulk insert of composite Domain Objects
Have domain objects: Profile and ProfileProperty. ProfileProperty static belongsTo=Profile and profile static hasMany=[profileProperties:ProfileProperty]. Each Profile has dozen profileProperties. …
1
vote
1answer
97 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 …
