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 ...
2
votes
0answers
61 views
Quartz job stops executing on StaleObjectStateException exception
I have a problem with quartz ( plugin :quartz2:2.1.6.2 but I have test even with plugin :quartz:1.0-RC7 but the problem does not change) on my Grails Project ( grails 2.2.1 ).
I have a job like this
...
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 {
}
...
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 ...
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
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 ...
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 ...
1
vote
3answers
318 views
Grails 2.1: How to use “schema-export export”?
I would like to (re)create my database schema using the command "schema-export". DDL generation works fine, but if I execute "schema export export", I get the following error, which suggest that there ...
1
vote
1answer
244 views
“in all” restriction for Grails/Hibernate Criteria Query
I need an way to do "in all" criteria queries in Grails/Hibernate. The standard "in" restriction is what I would call an "in any" restriction.
By way of example...
The Preamble
Take a domain class ...
1
vote
1answer
154 views
Grails 2.0 Hibernate Annotation - Not working
I created simple grails with hibernate annotation sample as given in documentation.
I am using scaffolding.
The exception when I click the new Book is as follows
No such property: action for class: ...
3
votes
1answer
490 views
How to get nullable Constraints with Grails 2.0?
I'm using grails 2.0 with mysql and i want some Domain attributes to be nullable.
In my domain class i did:
static constraints = {
counter(nullable: true)
competitors(nullable: true)
}
...
0
votes
1answer
222 views
Standalone GORM (based on Grails 2.0)
This topic has come up at various times over the years, the most recent solution apparently being the pet clinic sample app:
https://github.com/grails-samples/petclinic
That was built against Grails ...