6
votes
4answers
197 views
Controllers in Grails
I'm writing a small webapp in Grails and I have the following question regarding best practices for controller design and using GORM:
I'm storing the user object in session.user. Currently all my …
5
votes
2answers
360 views
Composite foreign key columns in GORM
Hi,
I need to customize the column names for composite foreign keys in GORM, and I didn't find any document that shows how to do it. I know how to customize PK columns, and how to customize a …
3
votes
3answers
154 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)
…
3
votes
2answers
722 views
Grails/GORM: The meaning of belongsTo in 1:N relationships
In an ordinary one-to-many mapping the "one"-side is the owner of the association. Why would anyone use the belongsTo-mapping for such a mapping? Am I missing some side-effect of specifying belongsTo?
…
3
votes
1answer
107 views
Limiting no of outputs in Hibernate query
I have a hibernate query in grails
Book.findAllByRating(4)
In the above query i want only 5 number of outputs.How do I limit the output to 5?
3
votes
2answers
564 views
GORM in Grails and StaleObjectStateException
I'm writing a small Grails app, and I keep on getting StaleObjectStateException:s for about 1/10:th of the calls to "createfoo" when running the following rather simple code. Most probably I'm missing …
2
votes
3answers
178 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 …
2
votes
2answers
244 views
How do I handle an empty List in Grails/GORM?
I'm trying to get a one-to-many relationship working with grails/gorm. I don't understand how to handle an empty list.
Here is my domain class:
class Parent {
List children
static hasMany = …
2
votes
2answers
259 views
Why does findAllBy* fail when using three conditions in Grails/GORM?
Consider the following usages of the Grails/GORM dynamic finder method findAllBy*:
def foo1 = Foo.findAllByYear(yyyy)
def foo2 = Foo.findAllByMonth(mm)
def foo3 = Foo.findAllByDay(dd)
def foo4 = …
2
votes
3answers
490 views
Grails query association problem
Hi, I'm having trouble writing a query for the following domain classes:
class Person {
static hasMany = [memberships: Membership]
}
class Membership {
static belongsTo = [person: Person, …
2
votes
1answer
193 views
Modeling many-to-many relationship in Grail on top of a legacy database
Hi
I have a simple ticket logging application build on LAMP.
I am currently playing around with grails. I want to build a demo app that uses the existing MySql database without changing the database …
2
votes
3answers
1k views
Defining default sort-order in Grails/GORM
Let's say I have definied a User object using GORM. Each user can have zero or more Login:s. Each Login has a timestamp. When retrieving user.logins I want the logins to be sorted based on the value …
2
votes
2answers
253 views
Specify order of fields in DDL generated from GORM classes?
I use GORM to generate my database's DDL from groovy classes. Which is great. However, the order of fields in the generated SQL is not the same as the order of fields in the class. For example, if …
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 …
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 …
