Tagged Questions
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 ...
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 ...
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
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
2answers
65 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
60 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
44 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
70 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
31 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
50 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
67 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
99 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
107 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
51 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 = ...
0
votes
0answers
159 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
79 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
128 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
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
140 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
71 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
41 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
62 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
60 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
103 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
59 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
119 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
78 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
196 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
284 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
138 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
136 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
155 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
77 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
146 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: ...
0
votes
1answer
67 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
63 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
90 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
55 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
422 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
105 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
76 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
685 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
554 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'
// ...
3
votes
1answer
266 views
How to avoid loss of DB when changing Grails domain class in development
One of the advantages of Grails 2.0 is that you can change domain classes in development without needing to restart the application server. This works, however when I change domain classes I lose all ...
1
vote
1answer
364 views
In grails 2 when using multiple datasources, can I specify which datasource a criteria should use?
In my grails 2 application I have multiple datasources configured in Datasources.groovy. My domain class mappings specify that all datasources should be used
class Book {
static mapping = { ...
3
votes
1answer
334 views
GORM - add child onto parent and save is giving groovy.lang.MissingMethodException
This is my domain model, a survey has many questions, and each question has many repsonses :
class Survey {
String name
String customerName
static hasMany = [questions: SurveyQuestion]
...
0
votes
1answer
104 views
How to initialize the domain class properties with the values of another Domain class properties in grails
I have grails 2.0.4 installed, I am stuck in setting the default values of domain classes
I have a Domain Class ApplicationConfiguaration to store all the default values, I am initializing the ...
0
votes
1answer
224 views
GORM methods are not accessible in Domain and Service classes
UPDATED:
I have installed grails 2.0
I have got two Domain classesApplicationConfiguration and City ,
ApplicationConfiguration stores the defaults fields and their values
City will access the ...
0
votes
1answer
526 views
Grails or Hibernate not creating missing table
I'm new to Grails so forgive my ignorance--if other info is helpful I'll do my best to get it posted.
I've created a single domain model class ToolKitComponent that is defined as:
class ...
