0
votes
1answer
14 views

Grails Class with hasMany

I have this domain class that has a one-to-many relationship as with dynamic scaffolding show below: Domain: package mienapp class Announcements { String user String title String ...
1
vote
1answer
37 views

Grails Data Migration Rollback

Hi I'm trying something very simple with Grails domain class. I am adding to my class a field and I want to use data migration plugin to rollback once so that the field I added gets removed. First I ...
0
votes
0answers
35 views

Grails Enabling automatic migrations (Grails 2.2.2)

I'm testing Grails as a potential framework for our workplace. I'm using this tutorial found on Grails website to manage databases: http://grails.github.io/grails-howtos/en/manageDatabases.html I ...
0
votes
2answers
15 views

Domain class auto validation in grails

I am fetching list of results from database but the list doesn't validates the constraints until i call "validate()" method for each objects. def temp = ConfigInfo.where { projectId == project ...
2
votes
1answer
103 views

Grails Mongo GORM Plugin - Mapping of Float and Byte is String instead of number

When using Grails MongoDB GORM plugin, I realized that Integers are mapped properly to mongo numbers, Long is mapped to NumberLong, etc. The only types which aren't map properly are Byte and Float. ...
0
votes
1answer
55 views

Grails Detached Criteria Query and “group by” and “having” clause

In a Grails 2.1 application, I'm having trouble getting a criteria query to behave like some handwritten sql I've got. So-here's some background info: The table is in a reporting db and has the ...
0
votes
1answer
125 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 ...
1
vote
1answer
43 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
28 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 ...
0
votes
0answers
13 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
2answers
90 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
2answers
91 views

Grails 2.1 dateCreated null intermittently on domain save

tl:dr; This is a bit involved of a problem, any advice is welcome, appreciate reading in advance :) My coworkers and I have been struggling a bit with an odd behavior in our batch processing ...
0
votes
1answer
82 views

“GORM support for Hadoop HBase plugin” is not supporting for grails 2.1.0

When I install Grails plugin "GORM support for Hadoop HBase". I am getting this error. | Error Plugin gorm-hbase-0.2.4 requires version [1.3.2] of Grails which your cu rrent Grails installation ...
1
vote
1answer
60 views

Accent Insensitive Search in Grails - Create Criteria

is there an easy way how to search accent insensitive in Grails? I have a create criteria builder with ilike (which is for case insensitive search) but I need accent insensitive. Like neglect accent ...
2
votes
1answer
72 views

Why doesn't my GORM object save to the database?

Consider the following code: if (!serpKeyword) { serpKeyword = new SerpKeyword( keyword: searchKeyword, geoKeyword: geoKeyword, concatenation: concatenation, ...
0
votes
0answers
39 views

unable to create grails criteria

I have an entity called EasyAnnouncement as following: class EasyAnnouncement { String name Event event // can be null } and the entity Event looks like: class Event { LocalTime ...
0
votes
2answers
70 views

Grails transaction never completes

Consider the code below, that tries to create a new SerpKeyword within a transaction and prints to the console to show where it is. if (!serpKeyword) { println "I DIDN'T FIND THE ...
1
vote
2answers
74 views

How to especify the query in a hasMany relashionship in Grails?

I have this domain class in Grails: class User { String name Status status enum Status { ACTIVE(1), BLOCKED(2) } static hasMany = [friends:User] } So user can have one or ...
3
votes
2answers
107 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 ...
1
vote
1answer
159 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 ...
0
votes
2answers
62 views

How would you prevent Bootstrap data migrations from running when the datasource is missing

The grails v2.0.1 configuration has been externalized into a file so that it can be on a secure partition. This was done by modifying Config.groovy and DataSource.groovy grails.config.locations = ...
1
vote
0answers
177 views

Grails domain class inheritance - GORM setting the wrong foreign keys

GORM get confused in a very simple 3 domain classes situation: Objects - Items - Revisions. Each Item has many Revisions. As suggested by the master Mr Burt, I am not using collections here. ...
0
votes
1answer
94 views

Grails - countBy in _template counting all records instead of domain instance

I have 2 simple domain models. I am trying to get a count on publications which have the published flag set to NO from within the show page of the portfolio instance. I can get the total number of ...
5
votes
2answers
134 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 ...
0
votes
0answers
27 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
159 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, ...
0
votes
1answer
83 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 ...
2
votes
2answers
42 views

Can I Determine When a Domain Class is Added?

If I have 2 (or more) domain classes with a hasMany of C, how can I determine if an entity of C has been added? class A { String name static hasMany = [cs: C] class B { String name ...
1
vote
1answer
70 views

How to save GORM class with composite id made from its own field?

This is my Domain class class ReturnReason implements Serializable { Long returnReasonId Long languageId String name int hashCode() ...
0
votes
1answer
63 views

GRAILS Check if atleast one of multiple properties is set

assuming I have something like this as Domain Class in Grails 2.x class CurrentReading { DateTime timestamp Sensor sensor Integer valueInt Boolean valueBool Float valueFloat ...
1
vote
0answers
118 views

Transient hasMany Property and Auto-Magic Setter

I've create a domain-class that uses a transient property in place of true foreign key relations. //ChildThing.groovy class ChildThing { String name static constraints = { } static ...
1
vote
0answers
62 views

Does the multiple datasource feature of Grails 2.0 support relations?

I'm trying to support some legacy tables and I was able to create a domain that uses a separate datasource of those legacy tables. However, when I try to use that domain from the separate datasource ...
1
vote
0answers
138 views

How to model composite key in legacy database in grails

How to model composite key in legacy database in grails I have a legacy db with the three tables modeled by the Grails domain objects class Foo { static hasMany = [bars: Bar] static ...
0
votes
1answer
86 views

How to avoid ImprovedNamingStrategy in joinTable in Grails

I have a legacy database which I can't change and I have this setup class Foo { static hasMany = [bars:Bar] static mapping = { version false columns { id column: "FooId" ...
0
votes
1answer
217 views

Grails 2.1 createCriteria issue with params

edit- I am trying to return a list of portfolios, along with the last 5 publications attached to each portfolio from my 2 domain classes. I am getting the last total 5 publications back and each list ...
2
votes
1answer
350 views

Override Grails dateCreated and lastUpdated for test data only?

I have several Grails 2.1 domain classes that include dateCreated and lastUpdated fields that GORM manages automatically, eg: class Person { Date dateCreated Date lastUpdated String name ...
0
votes
1answer
149 views

Grails 2.1.1 - table from child list not sorting in parent show view -arrghh

Having issues or lack of understanding on how to approach the following situation; I have 2 domains Portfolio static hasMany [publications: Publication] String portfolioName Publication ...
2
votes
1answer
159 views

difference between “grails console” and “grails”, then “console”

I just started learning Grails and I'm trying to play around with the database using the grails console, but I notice that there's a difference between running grails console and running grails, then ...
0
votes
1answer
177 views

Get Grails domain persistent properties in order

Is there some way to retrieve the persistent properties of a Domain Class in the same order I declared them in the class? class MyDomainClass { String prop1 String prop2 String prop3 } def ...
0
votes
1answer
80 views

3 domains in grails, I want to access 3rd domain which is unassociated to the 2nd domain in 2nd domains view

Im stuck again. Its very frustrating coming from a ruby background. I have 3 domains. Domain A has many domain B's. Domain A hasMany Domain C's I want to be able to access domain C's records in ...
1
vote
1answer
155 views

Grails 2 Show transient property that is an alias for id column

I just started out with Grails and I have a old MSSQL DB that needs a new fancy Grails UI on top of it. So far i have this code class Foo { version false columns { id column: ...
1
vote
1answer
72 views

Grails - 2 domains and 1 form create/update/edit issues

Having some mega frustration set in.Maybe Im trying grails too much like rails and active record. I have 2 domains.The parent is called 'report' and the child 'category'. The user creates a new ...
2
votes
1answer
69 views

Is there a belongsTo mixed syntax for GORM many-to-many and back-reference

I've come across a peculiarity in GORM mapping. What I expect table-wise is models designs (model_id -> models.id) categories categories_design (category_id, design_id) To get a model_id in ...
1
vote
1answer
95 views

If operator in groovy sql select statement

I would like to use the if operator in the select statement, using an executeQuery command. Something like: def tmpRec = BankStatement.executeQuery("select ...
1
vote
0answers
56 views

How can I consolidate mysql insert?

I'll try to explain what I'm trying to do. I have a grails service which is launched, using a socket, with a command on a service running on a windows machine written in C#. This service, to make it ...
1
vote
1answer
485 views

Grails GORM MySQL generate TEXT or LONGTEXT column

I am using Grails 2.1.1 and MySQL 5.5.27 Community Server. I need to have a Domain class field generate a TEXT or LONGTEXT column. I thought this would be simple, and I've seen numerous examples: ...
1
vote
3answers
126 views

How to delete an entry from joined table of many-to-many relationship in grails

I have two domain objects Class Attachment{ static hasMany = [mailDrafts: MailDraft]; } Class MailDraft{ static hasMany = [attachments: Attachment] static belongsTo = Attachment } It has ...
1
vote
1answer
87 views

GORM GPARS Integration Test

I am trying to integration-test the Gorm pessimistic lock, and simulating with multithreading the access from many servers simultaneously, but in each thread I don't get the results expected. This is ...
5
votes
1answer
729 views

Grails 2.1: Setting sessionFactory and dataSource from custom Spring configuration

I've got a complex, custom-configured Hibernate setup in Spring (including JPA entities, session factory and data source definitions) that I want to use in Grails 2.1.0. Because of that, I want to ...
0
votes
1answer
600 views

Grails 2 GORM with custom id field complaining of “Provided id of the wrong type for class” in show action

I am using Grails 2 to provide an interface on a legacy database with custom id fields. I have a domain class like the following: class StorageFile { static mapping = { table 'storage_file' // ...

1 2