0
votes
1answer
45 views

Grails locking levels

I am new to Grails and Goovy. I have reviewed the Grails Framework docs and the discussion about Optimistic vs Pessimistic locking here Its clear from the docs that: Grails uses optimistic ...
0
votes
1answer
108 views

I get “a foreign key constraint fails” error when attempting to join two classes/tables

I have these classes, abbreviated for practical reasons: class CV { Date dateCreated static hasMany=[proposals: Proposal] } class Proposal { String name Date date_started static ...
2
votes
1answer
187 views

Grails/GORM domain saving - transient object workaround

I found a work around to a problem I had, and I want to know if it is valid or not. It is a similar problem to: Grails Gorm : Object references an unsaved transient instance Lets assume I have two ...
1
vote
1answer
46 views

Grails get() generating incomplete SQL

I'm upgrading an app from Grails 1.3.6 to 2.1.1. Have hit what seems to be a very strange issue. I have a table called SECTION. This call: def testSection = Section.get(94725) Generates this ...
1
vote
2answers
173 views

Grails remove orphans many-to-many relationship

A simple blog application, Grails 1.3.9 and MySQL, a many-to-many relationship between two domain-classes, BlogPost And Tag class BlogPost { String title String teaser String body ...
1
vote
1answer
320 views

How to mapping Foreing key as Primary Key in Grails?

I have a legacy database with same property to Primary Key and Foreign Key. I'm trying to map it from Grails but I have problems with that. This is my domain class: class AccommodationPrice { ...
1
vote
2answers
249 views

Grails one to one relation

I tried to define one to one relation in 2 different way: Grails 2.0.3 Case 1: class Car { String model Engine eng static constraints = { eng unique: true } } class ...
1
vote
1answer
97 views

Is it possible to use a database sequence for a non-PK field in a Grails app?

In my application i need a unique value for a specific field in the database. This field has to be of type Integer. So i was wondering if it is possible to use a sequence for the field? And how to i ...
0
votes
1answer
95 views

Using liquibase, how to handle an object model that is a subset of database table

Some days I love my dba's, and then there is today... In a Grails app, we use the database-migration plugin (based on Liquibase) to handle migrations etc. All works lovely. I have been informed ...
0
votes
1answer
131 views

Grails GORM mapping FK that is not the PK of the other table

How do I map a GORM association where the foreign key is not a PK of the other table? I have the following schema: CREATE TABLE `supplier` ( `id` int(11) NOT NULL AUTO_INCREMENT, `partner_id` ...
1
vote
3answers
599 views

Is it possible to map a table name for a domain object dynamically in grails?

I have a domain that looks something like class Foo { String name static mapping = { table 'foo' } } but I want to make is more like : static mapping = { table ...
0
votes
0answers
262 views

Grails: Store XML values in database

Is there any way to store some properties of domain object in database instead of storing them as strings? i.e. class Document { String name Node value } instead of: class Document { ...
0
votes
2answers
419 views

Sharing a grails app domain plugin among multiple grails application clients and sing subset of domain classes

Well this is a strange requirement and I'm thinking about it if this is possible or not. Second thought comes is whether if its a feasible design decision or not. Here is the scenario: We have a ...
1
vote
2answers
423 views

Grails automatic constraint update

Does grails have an automatic constraint update. If we change the field in domain class to be nullable by adding constraint, it is not getting reflected in database without schema export. Is it ...
0
votes
1answer
115 views

How do map 1-to-1 relationship in grails to just 1 table under the covers?

Let's say I have a UserAccount domain class that has a UserPreferences domain class. I do this to separate the fields for organization purposes. Is there a way to tell grails/gorm that I really want ...
-1
votes
3answers
878 views

Grails limit database column size

In my Grails app I have a domain class that has a property SearchPrivacy searchPrivacy = SearchPrivacy.PUBLIC where SearchPrivacy is an enum enum SearchPrivacy { PRIVATE('pr'), PUBLIC('pu'); ...
7
votes
4answers
4k 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+definitions I've ...
1
vote
1answer
1k 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 to be able to edit ...
0
votes
1answer
2k views

Grails belongsTo, should I?

let's go straight to the problems (with Grails 1.1.1, it should work on previous one) I have 2 domains ie: User and Detail like this : Class User { String userName ; ..... // another fields ...