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

learn more… | top users | synonyms (2)

0
votes
1answer
99 views

Customizing the jointable column type of string lists in Grails domain classes

I've a domain class with a list of strings as one of many attributes. Sometimes, the strings that are in the list have more than 255 chars. So, how can I increase this limit in the database? Or change ...
0
votes
1answer
28 views

Grails get latest in a child collection - sort not working?

Head scratcher here, not sure if its the code or the test. We have a requirement to keep track of status changes for an object and the history of those changes. There are times when only the latest ...
1
vote
0answers
77 views

Cannot attach an object to Hibernate session

I have 3 domains with these relationships: A hasMany [bs: B] B belongsTo [c: C] C Inside a webflow I do this (simplified version): flow.a = new A(stuff:stuff) flow.a.addToBs(new B(c:C.get(1))) ...
1
vote
1answer
64 views

What can cause a Grails GORM save to fail after validate succeeds?

Immediately before validate and save I check my domain object: class MyDomain ... { static belongsTo = [owner: AnotherClass] ... } The 'owner' is set correctly. Then I validate; it passes. ...
0
votes
2answers
46 views

how to pass a list to the query in Groovy SQL?

I've a scenario to pass a List of char values to the query in Grails. When I pass the List this is what happening def accounts = ['A', 'B'] AND acct.account_status_cd in '${accounts} the query ...
1
vote
2answers
58 views

Grails one to many with limit on returned children

so i have two classes which have a one to many connection between them... class A { static hasMany = {bs: B} } class B { String name } now i create an object A and add 100 B objects to its ...
0
votes
1answer
37 views

Transactions in Grails

In several domain class I have a property createdBy with class User. If I delete a user I want to alter all domain objects to use a default user for this property. I want to do this by transactions ...
5
votes
1answer
120 views

Memory usage of Grails GORM methods

I'm wondering how grails handles memory usage and loading (fetching) of domain objects by GORM methods like: findAllWhere findAllBy list ... Are they fully loaded (respectively their proxies) into ...
0
votes
4answers
138 views

Grails - How to clear previous validation errors in command object?

How to clear previous validation error messages coming from Command object when user clicks on browser back button? Here is the sample code: def create = { UserInfoCommand cmd -> ...
0
votes
0answers
141 views

Saving Nested Domain Objects in Grails

I UPDATE THE ISSUE BELOW I am trying to save a series of nested Domain Objects in Grails and I running into issues with the syntax for this. As an example, lets say I have the following nested ...
0
votes
1answer
46 views

How to specify table name of hasOne property in Grails

I use hasOne for one-to-one relation in Grails: class MyParent { static hasOne = [child: MyChild] } class MyChild { static belongsTo = [parent: MyParent] static mapping = { ...
0
votes
1answer
86 views

Service access in beforeDelete()

I want to call a service inside my grails domain objects beforeDelete() event. Unfortunately it always crashes reproducibly when the event is fired. I built an example that reproduces the problem. The ...
0
votes
0answers
31 views

Premature EOF web crawler and save to database Grails

following is my codes in grails. Basically, I crawled from a website, parse the data and save it to my database. But I'm getting premature EOF error and I'm not sure which line caused it and how to ...
0
votes
1answer
92 views

Grails: Hibernate and Data migrations

I have a domain class that is for a customer. I have had to change to domain class recently because we were gathering a billing address and a shipping address, but were only recording one zip code ...
1
vote
0answers
51 views

Grails Groovy GORM ColumnTransformer Postgresql inet macaddr

We have a postgres database with column types like inet and macaddr We have generated Hibernate POJOs to use and can map these data types using @ColumnTransformer(write="inet(?)") The mapped field ...
1
vote
1answer
258 views

Using Spock to stub both Gorm and other methods in a Grails domain class

Sorry if this is a newbie question but I would really appreciate any insights the community could offer with regard to a problem I am having with stubbing the following method which I have in a Grails ...
0
votes
0answers
60 views

GORM not saving record to association table from CONSOLE

class Pirate { String name static belongsTo = Ship static hasMany = [ships: Ship] } class Ship { String name static hasMany = [crew: Pirate] } new Ship(name: ...
1
vote
0answers
60 views

Grails GORM, eager fetch mode for multiple layers of domain class

I have the following domain structure : class Survey { Integer id String title static hasMany = [questions: Question] static constraints = { id() title() ...
1
vote
1answer
110 views

when to use executeUpdate in grails

I'm looking at some grails gorm code in my current project and I'm wondering what are some pros and cons of the following HQL approach: UploadUpsell.executeUpdate("update UploadUpsell set ...
0
votes
1answer
26 views

Specify Candidate Key In grails?

How can i specify "name" as primary key...by specifying through domain class groovy file.. i'm working in fedora as OS and through terminal (not using ggts or any tools) and using database as MySQL ...
0
votes
3answers
83 views

Grails static mapping fails (repeated id)

I'm trying to do reverse engineering and create a model class for a given table schema in a database. The table's name is infopac_usersProva and it has two columns: strCip varchar(15) which is the ...
0
votes
2answers
76 views

Persist a list of LocalDate with GORM

I'm trying to persist a list of joda LocalDate in grails. What I have right now is something like this: package com.publidirecta import org.joda.time.LocalDate class Evento { List ...
0
votes
1answer
41 views

GORM - MongoDB does not save an item on a parent class set

Here are the domain classes class Settings { static constraints = { uid(nullable: false, unique: true) data() } static hasMany = [items: Item] Map data } class ...
1
vote
0answers
99 views

Physical Vs Logical delete of file stored as BLOB from Database

I have app in grails(uses GORM - grails ORM) and DB is MySql. I have table called 'attachment' in database which stores the files attached in web app as blob type. Each file size varies from 30 kb - ...
1
vote
0answers
26 views

Reorder manual increment field / executeUpdate with @var

We have a field that we use for custom ordering. In the event that someone inserts a duplicate sOrder we need to execute an update to reorder them. I was able to pull it off with a simple update ...
-1
votes
1answer
46 views

Working with many to one in Grails

I have created a many to one relationship N:1 like this class Score { Double value Criteria criteria static belongTo = [criterias: Criteria] } class Criteria { String name } so my ...
1
vote
2answers
74 views

grails findWhere not equal

Is there a way to use findWhere and a not equal value (trying to use it vs criterias)? E.g. Books.findWhere('sale' : true, 'category': ne('exclude me') ) I have a working solution, but was ...
0
votes
0answers
91 views

grails no error and validate true but does not save. Hibernate no update

grails no error and validate true but does not save. I have a method calling .save() but does not save the data in the db. I tried the ff: called FailOnError: true but does not show anything that ...
0
votes
3answers
54 views

What is the proper way to allow a table name to be changed via configuration in grails/gorm

I currently have the following code to define my "User" class class User { String username static mapping = { table ConfigurationHolder.config.console.datasource.table.user.mapping ?: 'user' ...
3
votes
2answers
101 views

Can't avoid n+1 selects with many to many relationship in Grails

I'm creating a toy Q&A site with Grails in order to learn the platform. I have two domains, Posts and Tags, with a many to many relationship between them. I want to print a list of posts with ...
0
votes
1answer
33 views

An issue with Grails Hibernate join returning too many objects

I've just started with Hibernate an have encountered the following thing: I have a domain class class Certificate{ String name Vendor vendor } and a query: "select cf from Certificate as ...
1
vote
1answer
117 views

ValidationException on Update: Validation error whilst flushing entity on AbstractPersistenceEventListener

In my environment, i have grails.gorm.failOnError = true on Config.groovy. package org.example class Book { String title String author String email static constraints = { ...
0
votes
2answers
49 views

GORM how to ensure uniqueness of related objects property

I'm trying to get my head around GORM and relational mapping. The relationships are working fine but there is one problem. I can't seem too ensure that every MailAddress added to MailingList has a ...
1
vote
1answer
68 views

Weird Hibernate / Gorm behavior in Grails Application

I have a pretty simple relation, where normally a cascading delete should work. My relation looks like this: enum StatusName { PENDING, SENDING, SENT } abstract class Notification { ...
-1
votes
1answer
38 views

Workaround for when nothing is found from a query in GORM

I'm doing something like this in one of my methods: def colorId = Store.findByName(color).id def shadeIds = Shades.findAllByColor(colorId).shadeId println "IDS" + shadeIds //sometimes ...
1
vote
1answer
81 views

Grails - owning side of relationship not persisted when using a List

I am experiencing a strange problem when trying to persist an association between two entities. When I use a Set (i.e. the Grails default), it works, however if I try to use a List, the association in ...
0
votes
2answers
160 views

Grails insert date without time

I have a date attribute in my domain and I want to insert to mysql without time. getting exception cannot cast string to date.Exception Message: Cannot cast object '2013-03-09' with class ...
0
votes
1answer
53 views

Nested Inline Domain Class Edit

I have a domain-class called UserForm with a List object called securityVerifications class UserForm { List securityVerifications = new ArrayList() static hasMany = [ ...
0
votes
0answers
214 views

Upgrading from Grails 1.3.9 to Grails 2.2.1 produces error in domain class

I am in the process of upgrading an app from Grails 1.3.9 to Grails 2.2.1. When I issue the run-app command, I get a long stacktrace that begins with this error and then more or less repeats it for ...
0
votes
1answer
71 views

Grails efficient batch delete on domain class with cascade delete to child classes

What techniques are people using to efficiently do cascading delete on a large collection of classes? Suppose I have the following domain classes: class Submission { static hasMany = [members: ...
0
votes
1answer
146 views

Grails Hibernate Filters Plugin seems to be working but is not filtering results

I'm new to Groovy and Grails but I am pretty familiar with Hibernate. For a project I'm working on I need to implement soft deleting of certain domain classes. Hibernate Filters seemed to be an ...
0
votes
1answer
39 views

Grails 2.2 'request' keyword at domain

I developed application using grails 2.1.2 then I upgrade to 2.2.0 I have a domain class class Concurrence { Concurrence parent = null Request request Person approver int status = ...
1
vote
2answers
87 views

Grails deleteAll() fails with hibernate exception

I'm trying to run a delete all on a domain class where I qualify one of the classes attribute values (both Member.submissionId and submission.id as long types). Here's my code: def memberCount = ...
1
vote
2answers
94 views

Grails: map domain class field on composite key

I have a domain class reverse engineered from a legacy table class AuditLog { String className; String eventName; ... AuditEvent event; //need to add this one static mapping = { ...
0
votes
0answers
72 views

Grails criteria - double sum

I have foloowing classes: class User { String name Date joinDate static hasMany = [coupon:Coupon] } class Coupon { BigDecimal amount String code } Each user has EXACLY 10 coupons. ...
1
vote
2answers
67 views

Having generic belongsTo in grails domain

I have three classes in my grails project. What is the proper grails domain definition Class A { List<Resource> xResources List<Resource> yResources hasMany = [ xResources: Resource, ...
0
votes
1answer
25 views

An issue while creating multiple unique columns with GORM

I have this Grails domain class: class MyClass { static auditable = true; String description; Boolean isActive=true; Date deletedAt; static constraints = { description ...
0
votes
1answer
35 views

Referring to Related Record ID In Controller On Save()

I'm still new to Grails and GORM and I got stumped on this and wasn't able to figure out what I am doing wrong. The intent is to automatically relate the record to the logged in user through the ...
0
votes
0answers
44 views

Querying many-to-one in grails criteria

I have three domain classes as follows. class Buyer { String name } class Indent { String price Buyer buyer static hasMany = [shippingAdvices: ShippingAdvice] } class ...
1
vote
1answer
115 views

Grails undirectional hasMany createCriteria

The ability to use Pagination is the goal, however I'm not sure how to work with this. The relationship is unidirectional hasMany (seen below). As current it works fine without pagination (see ...

1 2 3 4 5 29