0
votes
1answer
42 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 optim …
1
vote
2answers
85 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 …
1
vote
1answer
23 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 …
0
votes
2answers
28 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 obje …
0
votes
3answers
45 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 except …
0
votes
2answers
82 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 …
1
vote
1answer
128 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 …
0
votes
0answers
15 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 pr …
1
vote
1answer
64 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 …
2
votes
3answers
122 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
2answers
941 views
Setting Grails domain id in Bootstrap.groovy
Is it possible to explicitly set the id of a domain object in Grails' Bootstrap.groovy (or anywhere, for that matter)?
I've tried the following:
new Foo(id: 1234, name: "My Foo") …
1
vote
1answer
134 views
Storing and editing key/value pairs in Grails?
I have a domain object in Grails that needs to store a set of key/value pairs for each instance. There should never be more then about 10 pairs. The users of the application have t …
0
votes
3answers
476 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
2answers
127 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+ …
1
vote
1answer
52 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 …
