0
votes
2answers
49 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
54 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
48 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
64 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
148 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
2answers
45 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
2answers
118 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
40 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, …
2
votes
3answers
155 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 …
0
votes
3answers
67 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
…
1
vote
1answer
83 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 …
0
votes
4answers
563 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 …
1
vote
1answer
60 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 explaining how to perform …
0
votes
0answers
24 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. …
0
votes
1answer
152 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, matchPlayers: MatchPlayer]
…
