GORM is Grails' object relational mapping (ORM) implementation.
1
vote
1answer
52 views
How to implement a count in a subquery
I have the following table structures:
TABLE A:
ID
COL1
COL2
...
COL(n)
TABLE B:
ID
A_ID (id in table A)
VALUE
There is a one-to-many relationship from A->B
class A {
int id
...
coln
...
1
vote
2answers
58 views
GORM query to find the most recent of an entry
New to how the ORM works so bear with me. I have a domain class
class MyClass()
{
String myName
Date mydate
}
I have bootstrapped a couple of examples with the same string and different ...
0
votes
1answer
47 views
validating for a date in a grails app
My domain class has a date field. I'm getting data from the user in the format "mm/dd/yyyy"
So in my save() method in the controller I did this:
def save1() {
Date eventDate = new ...
0
votes
1answer
79 views
creating new instance of domain class not saving
Rather than save an editted domain class, I want to create a new instance of it with the changes I have enacted.
def update =
{
def VariantInstance = Variant.get(params.id)
...
0
votes
1answer
116 views
How to protect against XSS attacks in Grails app
In my grails app I'm extracting text from the params and using that as parameters in my Domain queries:
Example:
def color = Colors.findByName(params.colorname)
I imagine someone could fiddle with ...
0
votes
1answer
30 views
saving a second version of a grails object
one thing I would like to do is version the entries in our database. In my update method I would like to save a newer second version of an object. For instance
def update = {
def ...
0
votes
3answers
136 views
How to iterate over a list in groovy and add property for each object
I have a list of events like so:
events = Events.all
Events have a many-to-many relationship with Users via class UserEvents modeled after the approach from spring-security-plugin:
I would like to ...
0
votes
2answers
65 views
How to use this get method from my groovy class in a GSP
I'm following the template of this groovy class from the spring security plugin to maintain my many-to-many relationsips.
One of the methods is like this:
static UserEvent get(long userId, long ...
1
vote
0answers
82 views
Grails first object in a collection not updating whilst in an each loop
I am implementing a simple chat system in Grails as part of an existing application.
The main classes to consider are:
User.groovy
class User {
...
static hasMany = [
...
chatMessages ...
1
vote
3answers
251 views
Grails: Finding objects with List properties containing an object with a given property value
I'm working on a Grails application. We have a domain object called User, and User has as one of its properties a list of Role objects. Role has a few properties, one of which is 'name'.
I need to ...
0
votes
0answers
96 views
Grails GROM mongodb multiple/change connection
i was wondering if there is a way of dynamically "reconnect" the defined grails mongo connection during runtime. From the GORM documentation a connection can be made by configuring for example:
...
2
votes
1answer
159 views
Can't persist one-to-many relationship
In my current project I'm unable to persists a one-to-many relationship.
Both sides of the relationship will be saved - just the link between them is missing.
The one-to-many relationship between my ...
0
votes
2answers
59 views
different types of null in groovy
I have a method that looks like this:
static UserEvent get(long userId, long eventId) {
UserEvent.find 'from UserEvent where user.id=:userId and event.id=:eventId',
[userId: userId, ...
1
vote
3answers
90 views
Grails cast sqltype “number” to String
I have an abstract Event class which holds properties shared by all Event types and beneath it I have two subclasses with one table per class (MasterEvent and ParentEvent).
The problem is that in ...
3
votes
3answers
84 views
Good Maintainable way to add a save method to grails service
I was looking at the sample pet clinic grails app on github.
It has a service for creating pets called PetclinicService that has a method for adding pets:
Pet createPet(String name, Date birthDate, ...
0
votes
1answer
253 views
Adding Dynamic Fields to Domain Object in Grails
I am trying to find a way to add dynamic fields to a grails domain class. I did find the dynamic domain class plugin based on Burt's article, but this is way too much for our needs.
Supposed we have ...
0
votes
0answers
90 views
Grails GORM self-referential one-to-many throws LazyInitializationException in Groovy Console
I assume that the issue involves the creation of the Groovy console inside the Grails instance; normal Domain object queries work fine, but attempting to query into a self-referential one-to-one ...
1
vote
1answer
129 views
Issues with UUID with Grails, GORM and MongoDB
I am new to Grails and I tried to persist a model with the id of type UUID. I am aware of that there is ObjectId but for now I would to persist UUID.
class Book {
UUID id
String title
}
I have ...
0
votes
1answer
114 views
Grails Audit Logging Plugin - Performance
I'm using Grails Audit Logging Plugin for logging create/edit/delete operations on my grails app.
Does anyone know whether the actual logging (saving the log to DB) is executed in a separate thread ...
0
votes
1answer
54 views
Collecting values from a list of objects in groovy
I have a method like this
static getList (long colorid) {
ColorShades.findAll 'from ColorShades where color.id = :colorid', [colorid: colorid]
}
I'm using it like this:
def shadeIdsForAColor ...
0
votes
0answers
19 views
Script for saving large no of entries in mongodb
I have a mongodb database server.I want to get it fill up with large number of entries in a particular collection let say a collection named "user".
I want to know if there would be a script for ...
0
votes
0answers
25 views
An extra record with NULL is being saved in the database with grails while parsing through JSON
I have the code below which parses through JSON records and saves them to the DB
t.each { color, shade ->
if (color?.size() > 0) {
println "saving: " + color
...
1
vote
1answer
31 views
Grails 1:m get most relations
I'm relatively new to Grails.
I have the following
class House {
Integer number
Integer maxResidents
static belongsTo = [town: Town]
}
class Town {
String name
static hasMany ...
0
votes
0answers
46 views
Grails automatically creating unwanted relationship?
I have two domain classes specifying three levels of categorization.
class CategoryGroup {
String name
static hasMany = [categories:Category]
}
class Category {
String name
...
0
votes
2answers
55 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
1answer
51 views
many-to-many in grails is not saving records in the relationship table
I've got a many-to-many association between Color and Shade. Color has many shades and Shades has many colors.
I've modeled this like so:
class Color {
static hasMany = [shades: Shade]
String ...
0
votes
0answers
29 views
How to store domain reference as a dynamic attribute of another domain in Grails with MongoDB?
I would like to be able to store a reference to a domain object as a dynamic attribute of another domain.
Unfortunately, when I try to save such domain object I get:
| Error 2013-02-18 14:03:09,352 ...
0
votes
1answer
69 views
Grails how to set _idx field when INSERTing data from outside of the Grails application?
I have a scaffolded Grails application with two domains, Person and Course. Person belongs to Course, and Course hasMany Persons. I have modified show.gsp for Course to list all of the Persons ...
0
votes
1answer
54 views
Grails issue listing duplicate last names in associated list
I have a scaffolded Grails application with two domains, Person and Course. Person belongs to Course, and Course hasMany Persons. I have modified show.gsp for Course to list all of the Persons ...
0
votes
1answer
136 views
Should I rely on dirty checking?
I use Grails, which uses Hibernate for persistance under the hood.
My questiion is if it is a good practice to rely on dirty checking or should I always explicitly call save() method on entities ...
0
votes
1answer
65 views
How to set version property on domain object creation?
I'm trying to model a parent/child relationship.
I have the following domain class:
package test
class Person {
Person mother
Person father
String name
static hasOne = [father: Person, mother: ...
0
votes
0answers
64 views
Grails/GORM JNDI - defaultAutoCommit as false - domain objects do not save
When using a Grails app with JNDI (on Tomcat)... Is it a requirement that the defaultAutoCommit property is set to true? I'm using Oracle as a DB.
I'm a Powerbuilder developer, so i'm stil trying to ...
0
votes
1answer
179 views
Grails 1.3.7 Map to sql server 2k8 Date Column
We have a legacy grails app running 1.3.7 and having trouble mapping to a mssql server 2k8 table with a date data type.
I've got it mapped with sqlType:'date' it still get the following error when ...
0
votes
1answer
97 views
Using Oracle Coherence as second level cache for IBatis in Grails app
In a Grails app that's using IBatis for ORM (rather than GORM/Hibernate), is it possible to specify Oracle Coherence as a second level cache for IBatis? If so, how?
0
votes
2answers
97 views
Grails Date is being accepted as String
In my grails domain I am having a field Date i.e. java.util.Date.
In my controller I am loading this date from params using SimpleDateFormate.
To be precise assume that params.date is something like ...
3
votes
1answer
85 views
Is unit testing of mongodb dynamic attributes possible in Grails 2.2?
It seems docs for mongodb-1.1.0GA are outdated when it comes to unit testing section: http://springsource.github.com/grails-data-mapping/mongo/manual/ref/Testing/DatastoreUnitTestMixin.html
Following ...
0
votes
0answers
93 views
Grails domain class constraint modification causing exception
Am using grails 2.0.3 with default h2 database and have the following user domain class:
class User {
transient springSecurityService
String username
String password
boolean enabled
...
1
vote
0answers
54 views
grails how to set full text index
I can't find info on this quite simple question. I've a simple domain class like this
Class VehicleRequest{
LocalDateTime startTime
LocalDateTime endTime
Status status
String ...
0
votes
0answers
67 views
Grails - delete with executeUpdate fails when using Postgres and inheritance
Cat.executeUpdate('delete from Cat p where p.name=?',['felix'])
will fail with message:
Message: ERROR: relation "ht_cat" does not exist
When using Postgres and domain class inheritance.
Works ...
1
vote
1answer
152 views
Grails :: Timeout waiting for idle object :: GORM event methods
I recently added a new feature to my Grails 1.3.7 project where I want to do some post-processing after certain Domain objects have been persisted to the DB. I am using the afterInsert() method in ...
0
votes
0answers
162 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. ...
1
vote
1answer
42 views
Is there an easy way to make GORM errors restful api friendly
I'm working on a simple Restful API in GRAILS, I want users to be able to create an entry on one of my domain classes, so they can hit an entry point /rest/v1/create/event?params
In the receiving ...
2
votes
1answer
396 views
Grails GORM Criteria Query Eager Fetching
I have written a criteria query in a Grails service class where I expect an eager join to be performed, and to avoid lazy loading of child objects when displaying my results either as a JSON response ...
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 ...
0
votes
1answer
43 views
Found shared references to a collection exception in grails
I have an exception from the bellow line of code:
def order = new PostOrder(pOrder: "post", posts: status, children: lookupPerson().children)
the lookupPerson().children gives a set of 2 Child ...
0
votes
1answer
114 views
StaleObjectStateException: Transaction Error in Grails
I have a TaskList entity with many workable Task entities and certain Tasks can "close" the TaskList.
class TaskList {
...
static hasMany = [
tasks: Task
]
}
class Task {
...
...
0
votes
1answer
132 views
how to create custom queries in grails domain
Is there a way to create a query in a grails domain that always returns the records that have a specific criteria?
For example:
Class Person {
String firstname
String lastname
}
Now instead ...
0
votes
1answer
140 views
Grails GORM: How do I create a composite primary key and use it for a table relationship?
I have two tables, one of which (legacy table: A) has two fields that should serve as a composite foreign key and the other one (new table: B) should use a composite primary key for a each row:A has ...
0
votes
0answers
66 views
How to override GORM count
I am trying to override GORM's count() method for one domain class in grails 1.3.7 (since the default version results in a sequential scan of the whole table of 20m odd records - not particularly ...
0
votes
0answers
171 views
Grails+mongoDB : Can't serialize Map<String, Enum>
Im using an enum in my application called PublishedState. I could save it normally before I started refactoring for i18n support.
Here are the relevant parts of the Theme domain class:
class Theme {
...