GORM is Grails' object relational mapping (ORM) implementation.
0
votes
0answers
17 views
Grails StaleObjectException during domain object save
I have already created a whole web application. I have started some load tests and sometimes I got StaleObjectException.
I have interaction with database in several places and I would like not to ...
0
votes
0answers
9 views
GORM (Hibernate) tries to map non-domain classes; gives DuplicateMappingException
I am upgrading my Grails app from version 2.1.0. Prior to this the application was behaving fine. I downloaded and set-up the new version of Grails (initially I tried version 2.2.1 but tried going to ...
0
votes
1answer
29 views
Grails query cache is not used
I'm trying to cache the following query that is called from a controller:
def approvedCount = Book.countByApproved(true, [cache: true])
I have enabled the 2nd-level cache for the Book class, by ...
0
votes
0answers
23 views
Grails Hibernate 4 cannot manually reconnect unless Connection was originally supplied
I just upgraded my Grails 2.2.1 app to 2.3.0.M1 with Hibernate 4.1.1. I am now getting this error when I try to make any query:
java.lang.IllegalStateException: cannot manually reconnect unless ...
0
votes
1answer
14 views
DomainClass.where queries, authorization, and filtering
I'm looking into using Grails and accessing MongoDB using GORM.
Say I have a domain class named BlogPost, but a specific user is only allowed to see certain blogs posts.
Now, In a controller action ...
0
votes
0answers
28 views
Grails insert enums using sql query
I try to understand the following...
enum type in postgres db:
CREATE TYPE gender AS enum('M','W')
insert via sql query:
def map = [gender:'M', birthyear:1990]
// DOES NOT WORK
...
0
votes
2answers
42 views
How to do a 'where' query on a GORM object with matching local variable names
Let's say I wish to search for a grails domain object, and the parameter values are in local variables whose names match the object's attribute names:
def getPerson(String firstName, String lastName) ...
0
votes
1answer
30 views
Grails query cache is ignored
I have an application which is read-mostly, so most queries use the Hibernate 2nd-level query cache. I have one query that must be executed every time a page loads, so I invoke it from the layout GSP ...
0
votes
1answer
28 views
grails, unit test mock domain with assigned id
I am using assigned id in my domain
class Book {
Integer id
String name
static mapping = {
id generator: 'assigned'
}
}
so to add a new book:
def book = new Book([name: "The ...
2
votes
1answer
38 views
Grails N+1 query
My Grail app uses the Spring Security and has the usual User, UserRole, and Role classes. The way these classes are modelled is little unusual, in that there are no hasMany mappings in either User or ...
0
votes
1answer
33 views
Grails eager dynamic finder
If I load a list of domain classes using a dynamic finder, e.g.
List<Book> books = Book.findAllByPublicationYear(2013)
My understanding is that the list of books will be lazily loaded, such ...
0
votes
1answer
40 views
Grails/groovy/GORM performing inner-join like query
I am trying to get a list from 3 domains in grails (something like inner join in any regular programming language)
here are my domains
class Category{
Integer id
String name
}
class Tag{
...
0
votes
1answer
41 views
Grails: Raw SQL query in the current transaction
I am trying to execute a raw sql query using something similar to
def dataSource;
Sql sql = new Sql(dataSource);
But, it seems that this runs in a separate transaction of its own. It therefore ...
0
votes
3answers
84 views
Grails how to map enum to existing enum on database
I have a given postgres db using a enum type with following values "M", "F". The value can be null. When i try to save a domainobject, i receive the errors below.
postgres enum:
CREATE TYPE ...
0
votes
1answer
25 views
One-to-Many With Composite Keys and Different Column Names in Grails
This is a syntax question. I want a one-to-many relationship between Foo -> Bar (simplified here):
class Foo {
String fooPK1, fooPK2
static mapping = {
id composite: ["fooPK1", ...
1
vote
1answer
40 views
How do I use a in clause 'in' a grails.gorm.DetachedCriteria?
Is it possible to use an 'in' criteria in a Grails DetachedCriteria?
This is what I have,
def query = new DetachedCriteria(DomainObject)
// list is actually built up from another query,
// but for ...
0
votes
0answers
38 views
How to inherit GORM mapping from non domain class?
Permanently I have some tables and some hibernate classes with mapping annotations. And this classes have abstract superclass with mapping annotations also. But in this superclass there is no table ...
0
votes
1answer
25 views
How to map Grails domain object to a specific mongodb table name
I've setup a simple grails app looking at a mongodb.
My domain object looks like this:
class GoogleSearch {
String _id;
String id;
String query;
String site;
Object results;
...
0
votes
3answers
52 views
Grails: Prevent cascading association between two domain classes with multiple relationships
Consider two domain classes; Job and Quote.
A Job has many Quotes but a Job also has an accepted quote. The accepted quote is nullable and should only be set once a particular Quote has been accepted ...
1
vote
2answers
52 views
How to do a simple table join in Grails
I'm kind of new to grails and I'm having a lot of trouble with joining two existing tables through domain objects that have been created off of those tables. Does anyone know how to do this in ...
0
votes
0answers
49 views
Spring Batch multithread throwing java.lang.Thread.State
I have a web application developed using Grails, Spring, Java and Hibernate.
It contains a batch job implemented using Spring Batch. When I run the job without multithreading it works fine. As soon ...
0
votes
1answer
38 views
How can I add a criteria to a grails criteria to limit results based on a filtered association?
In my old java code I could do this to "join" another table in a hibernate query and filter results based on it.
final Criteria brokerageCriteria = userCriteria.createCriteria("brokerage");
...
0
votes
1answer
25 views
Grails domain object derived property not updated after save
I am using a derived field in Grails domain class:
BigDecimal expectedDurationHrs
static mapping = {
expectedDurationHrs formula: 'time_to_sec(timediff(expected_end_date, expected_start_date )) ...
0
votes
2answers
59 views
Is there a cleaner, more Grailsy way to write this query?
I have a couple scenarios where I want to retrieve a single Advertiser and eager fetch most of its object graph. I definitely don't want to do this by default, so I've been searching for the right way ...
0
votes
2answers
39 views
Easy save or update of hierarchical object gorm
How can I easily deal with nested properties in GORM?
If I have a map of properties including nested properties:
def mymap = [
id : '1',
name : 'first name',
subs : [[
subid : 1,
...
1
vote
1answer
42 views
Missing table error while accessing a legacy PostgreSQL table with Grails
I have been trying to connect to a legacy table of a PostgreSQL database from my Grails App for a few days now without success.
What I want
All I want is to query this table (which has the users ...
1
vote
1answer
35 views
What is the best way to implement self-referenced one-to-many relationships in Grails?
I want to implement a follower following relationship in Grails GORM. One implementation could be:
class User {
String name
}
class Follower {
User user
User follower
}
OR:
class User {
...
0
votes
1answer
23 views
How to set unique hasMany relations based class properties?
I have two domain classes:
class Book {
String name
static hasMany = [articles: Article]
}
class Article {
String name
static belongsTo = [book: Book]
}
I want to validate that a ...
1
vote
1answer
39 views
Grails / GORM - equivalent to JPA @ElementCollection
I have a composition pattern where a parent object has a list of child objects, e.g., Order and LineItem.
It behaves similar to cascading with delete orphans, but the child objects are @Embeddables ...
0
votes
1answer
24 views
GORM: lazily save
a) I try to save a contact item belonging to the datastore domain classe as following:
class Contacts implements Serializable{
static belongsTo = [dataStore:DataStore]
DataStore dataStore
...
1
vote
1answer
35 views
Grails Domain - Child with multiple parent cascade behavior
I have the following domain classes
class Child {
static belongsTo = [parent1: Parent1, parent2: Parent2]
static constraints = {
parent1(nullable: true)
parent2(nullable: ...
0
votes
0answers
10 views
GORM select recent by updatedDate on join table
I'm trying to implement a sql statement via createCriteria and can not find out how to translate. General idea is I am selecting the "most recent articles" based on a max value on one of the inner ...
0
votes
1answer
48 views
Grails - find where date ranges overlap
I have a Grails domain object with a startDate and endDate property.
What's the best way to find all those objects where the range [startDate, endDate] overlaps with a specified date range? I know ...
0
votes
0answers
44 views
Mapping legacy domain class using Grails
I am trying to map a legacy domain class to my grails class, but when table is generated, the field associated with legacy class is Tinyblob, and not a BigInt linked with ID, and foreing key stuff.
...
0
votes
2answers
81 views
Querying a many to many join table with HQL
I need some advice for creating a hql query.
Situation: I have set of Nodes to which can be assigned a configurable amount of Flags. To do this I have the following classes/tables:
Classes:
class ...
0
votes
1answer
50 views
How to design domain classes in grails?
Good day!
Given these functional requirements:
User Management
Administrator
Librarian
Borrower
*The users have the option of logging-in via OpenID.
Property Management
Book
Memorandum
...
0
votes
1answer
40 views
Validate GORM model after migrations
We're getting started with running Liquibase migrations on Grails server startup. We'd like to use dbCreate='validate' on the dataSource, to ensure that the database and object model stay in sync. Our ...
0
votes
1answer
23 views
Error when use PropertyNotInList in Grails + Oracle + CLOB
I'm trying to retrieve all objects from oracle 11g database except some objects that contain an especial value in a property.
The code:
//Retrieve thoughts
def thoughts = ...
0
votes
0answers
72 views
Grails One to Many form
I am currently working on a grails project and am trying to create a one to many form. I have been using the tutorial at the link below to get started:
...
0
votes
3answers
59 views
GORM: saving a manyTomany relationship
just trying to persist a relationship between GORM entities, and an overflow error appends on mapping during save.
1) I create a manyTomany relationship between User and DataStore:
User entity:
...
0
votes
1answer
58 views
GORM get method based on dependent criteria
I'm new to Groovy/Grails so this could be an easy question. I have the feeling this is common code but I've spent a while and I can't find the right thing to Google.
I have a domain structure with ...
2
votes
1answer
64 views
Grails Domains: Get by Id not found
I have a Job (using Quartz)
A Service method wich uses get (for a Domain class)
The problem is: sometimes (1 in a 1000) the domain's get(X) method returns null even if the row with id X exists.
If ...
0
votes
1answer
71 views
Grails criteria: how to count results from a grouped subquery?
Ok guys I'm finally stuck with GORM Criteria API implementation facing this problem:
I've got an Oracle view mapped like this:
class MyView implements Serializable {
Long idA
Long idB
...
0
votes
0answers
37 views
GORM, one class has both many-to-one and many-to-many (needs two belongsTo)
In my class I need to do something like below:
class Category {
static hasMany = [subCategories: Category, contracts: Contract]
static belongsTo = [parentCategory: Category]
}
Which ...
0
votes
2answers
62 views
Grails GORM query on two associations
I need to query on a domain that has two associated objects.
class UserVideo {
User user
Video video
}
class User {
String name
}
class Video {
String title
}
I need to find all the ...
0
votes
1answer
55 views
Grails query from multiples domains
I have issues. Please help me if you can.
I have 3 domains called:
- DomainA(id, propA1,propA2)<br/>
- DomainB(id, propB1,propB2,forgeinKeyToDomainA)
- DomainC(id, ...
0
votes
2answers
73 views
Check if domain classes hasmany collection contains the subset collection
Hello i'm trying to get list of domain objects if a domain object's hasmany association contains all elements in given list.
class Patient {
static hasMany = [symptoms:Symptom]
}
class Symptom {
}
...
0
votes
1answer
54 views
Grails unidirectional Many-to-Many
I hava Java/JavaEE background and started a Grails project recently.
When I write the domain model, there is a requirement: unidirectional many-to-many. I know how it should be in Jpa/Hibernate. I ...
1
vote
1answer
727 views
In a GORM findBy* query, how can I use “sort” before limiting using “max”
The following grails query will limit the number of results to 3 and then sort those by id:
def results = Domain.findAllByFoo(foo, [sort: 'id', order: 'desc', max: 3])
So this will return ids 1 ...
1
vote
1answer
2k views
How to express “where value is in dynamic list” in HQL/GORM?
For a grails application, I need to find a list of objects whose "attr" is one in a dynamic list of strings. The actual HQL query is more complex, but the bit I need help with is this:
def result = ...

