GORM is Grails' object relational mapping (ORM) implementation.

learn more… | top users | synonyms (2)

0
votes
1answer
135 views

how to create custom queries in grails domain

Is there a way to create a query in a grails domain that always returns the records that have a specific criteria? For example: Class Person { String firstname String lastname } Now instead ...
0
votes
1answer
145 views

Grails GORM: How do I create a composite primary key and use it for a table relationship?

I have two tables, one of which (legacy table: A) has two fields that should serve as a composite foreign key and the other one (new table: B) should use a composite primary key for a each row:A has ...
0
votes
0answers
67 views

How to override GORM count

I am trying to override GORM's count() method for one domain class in grails 1.3.7 (since the default version results in a sequential scan of the whole table of 20m odd records - not particularly ...
0
votes
0answers
171 views

Grails+mongoDB : Can't serialize Map<String, Enum>

Im using an enum in my application called PublishedState. I could save it normally before I started refactoring for i18n support. Here are the relevant parts of the Theme domain class: class Theme { ...
0
votes
0answers
31 views

Can I configure data source specific “global” hibernate mappings?

I know I can specify global mappings in Config.groovy with grails.gorm.default.mapping = { ... } but, in a project with multiple data sources (Grails >= 2.0.3), is it possible to configure ...
2
votes
2answers
234 views

Grails custom listener, updating property generates other event?

I need to calculate coords from some address fields in a Client domain, so in order to decouple the domain class from this requirement I 've added a custom listener that uses Google Maps API to get ...
0
votes
0answers
39 views

How to update a grails domain object with failOnError:true

I have a grails domain object and i want to handle errors while updating it if any. My code looks like this. def obj = MyDomain.get(id) def values = new HashMap() values.put("name", "My Name") ...
0
votes
2answers
93 views

Grails GORM Service class Testing withNewSession()

I am trying to update my test since I made a change on my service class. In a service method I added ("withNewSession") Domain.withNewSession { .. ... domain.save() } Since I am using the ...
0
votes
1answer
42 views

Grails - gorm false OR NULL

I have a field in a table called disabled that is a Boolean. I'm trying to query for both false or null but can't seem to get it to work. I have tried a few things, most likely solution but didn't ...
0
votes
1answer
131 views

save(flush: true) is not flushing the session

I was creating a new grails app with several domain classes and controllers. All my controllers have working methods for save(), update() and list(), e.g. def update(Long id, Long version) { def ...
5
votes
2answers
129 views

grails service with different scopes for persistence

I have one domain, in that domain more than 25 members are there. This members value will come from one form. But it feels bad to fill those too much fields. So I thought dividing input form into ...
2
votes
0answers
93 views

How to model legacy table(s) with grails scaffolding

After a week's searching and trying I have to come here with my problem. I have a legacy system that I need to model with grails scaffolding. The system collects report information in the following ...
0
votes
1answer
122 views

No such property: INTEGER for class: grails.orm.HibernateCriteriaBuilder

A query is composed as follows: def subQuery = { ge("date", fromDate) } def query = { projections { sqlProjection 'sum(hoursBefore+hoursAfter) as totalHours', 'totalHours', INTEGER ...
1
vote
0answers
101 views

Grails changing case of table names when switching from H2 to MySQL

I have a Grails application that has been working properly with an H2 database for months. All of the table names and column names are in uppercase. I switched to MySQL when moving into production ...
0
votes
1answer
272 views

Grails left outer join query HQL or criteria challenge

I am a newbie to hql and tried out several combinations that i could find but i seem unable to construct the correct HQL query for a left join. I have the following domain model: class Company { ...
0
votes
1answer
94 views

Selective deep rendering of hasMany relationships in grails

For the following domain model: class Route { String name static hasMany = [checkPoints:CheckPoint] static belongsTo = [someBigObject:SomeBigObject] static mapping = { ...
0
votes
0answers
109 views

Grails/GORM : Legacy DB tree structure domains (recursively)

I am trying to create the corresponding domain classes for a legacy database that uses the typical tree structure (hierarchy) to store some group names. I would like to do the standard (ReadOnly) ...
2
votes
1answer
94 views

Gorm MongoDB plugin storing jvm object id instead of byte array data

When I try to store a byte array as a field of a domain class in a grails application, The resulting entry in the mongo database is the object id of the byte array instead of the BinData object which ...
0
votes
1answer
42 views

No save when forwarding an action?

Grails 2.2.0 I'm exploring grails and ajax, and maybe I'm an overzealous ajax adaptor, but I really think its a gamechanger, so I'm going in headfirst. Datamodel is a master detail (1:n). A table in ...
0
votes
1answer
60 views

Domain classes to track Users and Games

I'm trying to do something that seems so simple. I have a User class, and I have a Game class that matches up two Users. It's this simple: class User { String username static hasMany = ...
2
votes
0answers
83 views

How to change encoding for a column in Grails Domain

For one of my domain fields I'd like to change the Encoding and Collation. Right now everytime I restart the app, with dbCreate=create, I have to manually change the Encoding in the MySQL DB. ...
0
votes
1answer
63 views

Grails - Slow Deletions

I have a Group domain object that contains a set of user domain objects It is possible for this group object to have 200,000 users. Whilst testing this, I noticed that deleting this group with ...
0
votes
3answers
98 views

number of records per day using grails

I have a grails application with a mysql database as the datasource. The mysql database is created and maintained by a third party. One of the tables 'visitinfo' contains 2 columns consisting of the ...
0
votes
1answer
136 views

Grails GORM: how to link tables by a composite foreign key?

I have a default audit_log table from audit-logging plugin which looks like this: audit_log: id | class_name | event_name | ... I want to provide a human-readable description for logged events. I ...
0
votes
2answers
122 views

beforeInsert not triggered in grails + mongodb

it looks like beforeInsert is never triggered and the password is stored as plain text in DB, I have a User domain-class like this: class User { String email String name String surname ...
2
votes
1answer
264 views

HQL Inner join on same table

I asked an earlier question today which was about GORM: How to fetch records in grails by max date and group at same time However, someone suggested it can be easily achieved using HQL. But using HQL ...
3
votes
2answers
436 views

How to fetch records in grails by max date and group at same time

I have a table that looks like this: id name shade date_created ---- ----- ------- --------------- 1 Red bright 10-28-2012 2 Orange light ...
0
votes
2answers
73 views

Grails Change ID type on existing database

I have an existing application in grails using mysql database with much data. The previous programmer uses int as id and I need to change to long as I'm running out of ids. I know that the change in ...
0
votes
2answers
109 views

Grails/GORM not cascading save through entire object hierarchy

I'm having trouble getting saves cascaded down my object hierarchy. Below is the code of my object hierarchy. class Entity { static hasMany = [attributes: Attribute] } class Attribute extends ...
0
votes
1answer
41 views

How to achieve Hibernate @Any in Grails?

Does Grails somehow support Hibernates @Any annotation? I would like to know if and how. I can achieve @Any by doing something like: class A { String entityClass Long entityId // yes, only ...
0
votes
1answer
116 views

Defining OR Condition with grails criteria api

I have the following domain objects: class User { String name Transaction transaction static constraints = { transaction nullable: true } } class Transaction { ...
0
votes
1answer
57 views

grails - using multiple belongsTo but only one at a time

i have a several problem with the GORM of grails. I have two classes : User and Batiment. Each one must have an address. So i have created a third class : Address. On each of the User and Batiment ...
-2
votes
2answers
94 views

Is there a preferred way of logging sql statements?

i want to log sql generated by an application and have started to read about sql logging in a Grails application. I tried to set the logSql = true setting but this gives me an unreadable set of sql ...
0
votes
1answer
38 views

Retrieve all Products in a set of Categories - uni-directional and use pagination?

in our application we have a uni-directional relation like Category / Product A Category has many Products, but a product does not know in what categories it is placed. Now i would like to retrieve ...
0
votes
1answer
33 views

Grails - onSelect style GORM Method

Does anyone know if there is anything in Grails similar to the beforeInsert or beforeUpdate gorm methods but for selects? It would be useful for a use case we have to perform an action on certain ...
0
votes
0answers
458 views

grails gorm executeQuery HQL inner join

I am trying to do a simple inner join using GORM's executeQuery but getting a QuerySyntaxException.....I believe my hql is ok. Here is my query def query = Institution.executeQuery("select longName ...
0
votes
2answers
69 views

Print Mysql queries produced by Grails

i want to get hold of Mysql queries produced by grails before or after executing. trainingList = PrivateTraining.findAll(query,parameter) i want to print the complete mysql query which is executed ...
0
votes
2answers
46 views

GORM relationship mapping

I have two domain classes.A request that should be mapped to a color. color domain has 3 different options yellow, red, green (there could be more options (entries) at later point). So, when a user ...
0
votes
1answer
47 views

Hibernate Filter is not applied in Grails Service/Jobs

My domain uses a hibernate filter like so: class UserMapping { // Senseless App Logic here static hibernateFilters = { typeFilter(condition: "type = 'IDENTIFIED'", default: true) ...
0
votes
2answers
104 views

passing my “own” map from controller and render it in view

So this is my show() method in my controller with InsitutionList as a global variable but when I want to access this InsitutionList from list.gsp it is not rendering (also not giving any errors like ...
0
votes
1answer
20 views

Properly constrain the number of specific records in SQL and Hibernate

In my scenario a PLAYER can perform 2 ACTIONS per day (for example, can attack 2 other players per day). I implemented two persistent classes: Player and Action. Action class has references to Player ...
1
vote
2answers
209 views

Grails GORM: list all with nested property

My (simplified) domain model looks like this: class Student { static hasMany = [professions:StudentProfession]; } class StudentProfession { static belongsTo = [student:Student]; ...
0
votes
0answers
26 views

How to count and group by date without time with DATETIME in RDBMS and Grails GORM / Hibernate Criteria? [duplicate]

Possible Duplicate: Grails group by date I've a sale domain class in my grails app. So i've many sales in one mysql table in my project. Every sale has a date (saleDate) with time. Now i ...
0
votes
1answer
72 views

Grails database gets cleared at each recompile

I have a Grails project in which the development environment uses an in-memory H2 database: dataSource { dbCreate = "create" url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000" } I can ...
0
votes
1answer
105 views

Grails: Convert the Hql query to GORM

Kindly, Convert this below hql query to GORM either using criteria or using some API. I am new to grails and I searched enough but I did't get any positive solution for this forgive me if it is ...
0
votes
3answers
274 views

Weird afterInsert / afterUpdate loop in Grails

I have a Note domain class, and when a new note is saved I need to create for it a NoteEvent, recording for posterity that the note has been created. Note has a collection of NoteEvents, and each ...
0
votes
1answer
145 views

Modify params before saving domain object

I needed a domain class that held a list of Strings. It seems fairly well-known that GORM can't handle this, so I've worked around it. At first I tried using getters and setters in the domain class, ...
2
votes
2answers
91 views

grails (gorm) set contains and persists duplicates

I don't quite understand what is going on in my code right now. From what I understand, a groovy set does not contain duplicates. However, I am seeing duplicates in a set and also seeing duplicates ...
0
votes
1answer
73 views

Id is set to NULL when trying to save DomainObject in Grails

I have two domain object with the same structure as the class Foo below class Foo { static mapping = { id column: "old_id_column" prop1 column: "old_prop_1" ... some more ...
0
votes
2answers
85 views

Grails relationship involving mutliple tables, possible many to many

The problem lies with linking a Event Instance to a Tag Instance. Upon Saving an event which has now been achieved ...but with design problems remaining, as one tag can be related to multiple events, ...

1 3 4 5 6 7 29