Tagged Questions
1
vote
1answer
34 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
1answer
58 views
GORM get method based on dependent criteria
I'm new to Groovy/Grails so this could be an easy question. I have the feeling this is common code but I've spent a while and I can't find the right thing to Google.
I have a domain structure with ...
0
votes
1answer
68 views
How can I use embedded GORM classes in Grails?
Following the GORM docs I tried to use the following domain class with Grails 2.2.1:
package grailscompositiontest
class ScafPerson {
String name
ScafAddress homeAddress
ScafAddress ...
0
votes
1answer
33 views
domain class in grails
please help me
I have this class
Class Person
{
String name
String id
Date date
}
This class is connected with mysql
my question is where put this:
Person.count() or
...
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
1answer
39 views
GORM - MongoDB does not save an item on a parent class set
Here are the domain classes
class Settings {
static constraints = {
uid(nullable: false, unique: true)
data()
}
static hasMany = [items: Item]
Map data
}
class ...
1
vote
2answers
65 views
Having generic belongsTo in grails domain
I have three classes in my grails project. What is the proper grails domain definition
Class A {
List<Resource> xResources
List<Resource> yResources
hasMany = [ xResources: Resource, ...
0
votes
1answer
127 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
0answers
99 views
Grails/GORM : Legacy DB tree structure domains (recursively)
I am trying to create the corresponding domain classes for a legacy database that uses the typical tree structure (hierarchy) to store some group names.
I would like to do the standard (ReadOnly) ...
0
votes
0answers
441 views
grails gorm executeQuery HQL inner join
I am trying to do a simple inner join using GORM's executeQuery but getting a QuerySyntaxException.....I believe my hql is ok. Here is my query
def query = Institution.executeQuery("select longName ...
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
53 views
Domain design to store user's country, age group, etc
Here is the situation: a user table contains data that overlap with other users' data such as country, age group, gender, etc.
In MySQL, I would use three tables or two. In the case storing country, ...
0
votes
1answer
108 views
Grails transient property not validating error?
I have a domain class:
class Book {
String id
Date dateCreated
Date lastUpdated
String title
boolean acceptPolicy // defines if the user accepts the terms and privacy poicy
...
0
votes
1answer
28 views
How to use the withCriteria results in a new withCriteria query in Grails?
Consider the first query:
def books = Book.withCriteria {
eq("category", "fiction")
}
How can I use the result of this query in the next query to get all the authors who wrote these books?
I ...
2
votes
1answer
283 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
...
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: ...
1
vote
1answer
255 views
Mapping Grails Domain object to JDBC table/sequence
I am trying to map an existing oracle table to a new Grails Domain Object. I also have an existing sequence. When calling "run-app", I get an error:
Unsuccessful: create sequence hibernate_sequence
...
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 ...
0
votes
0answers
132 views
3,Mapping column named 'interface' in Grails seems impossible
It seems that it is impossible with Grails to map a domain class to a database table that has is a foreign key column named 'interface'.
In my case there's a relationship with two tables INTERFACE ...
0
votes
1answer
183 views
Grails: Adding new field in Domain class causes crash
I have an older project running Grails 1.3.7, in the domain class (ex. Patients) I added a new field (boolean disabled, nullable is true).
class Hospital {
hasMany = [patients: Patient]
string ...
1
vote
1answer
106 views
Data binding with multiple domain classes in XML request
I noticed in the User Documentation that it's possible to split URL parameters intended for different domain classes as such:
/book/save?book.title=The%20Stand&author.name=Stephen%20King
And ...
-1
votes
1answer
173 views
grails domain class save
I get the following error when I try to save a domain class, in grails:
No signature of method: java.lang.String.save() is applicable for argument types: () values: []
Possible solutions: size(), ...
0
votes
2answers
92 views
How to properly create a multiple one-to-one bidirectional relationship in Grails?
I am trying to create 2 domain classes User and MailBox
There will be 2 Mailbox for each User, one is sent, another is inbox.
I've tried multiple ways of solving this:
1 - (fails with a mapping ...
0
votes
1answer
168 views
grails adding multiple children to parent domain
I am having some difficulties adding children domains to parents. here are the classes:
class parent{
String firstName
String lastName
String dobYear
String dobMonth
String dobDay
Date dateCreated
...
2
votes
2answers
704 views
How to dynamically add a property / field to a domain class in Grails?
For a project I'm currently working on I need to dynamically add properties to a domain class and persist them later in the database. In general, I need a key/value store attached to a "normal" domain ...
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
...
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
306 views
Grails: How can I create named unique constraint for multiple columns?
How can I create named unique constraint for multiple columns?
I've three classes:
class Descriptor {
// some columns
}
class Protein {
// some columns
}
class DescriptorValue {
// ...
0
votes
2answers
133 views
For GORM Map type, add index to the table created by GORM
GORM has below example:
class Author {
Map books // map of ISBN:book names
}
When GORM create table, it will create a table with three column: author_books, author_books_idx and ...
0
votes
0answers
99 views
How to intercept dynamic methods of domain objects with AOP or some other way?
I would like to wrap Domain class's dynamic methods like save() get*() with an Around advice (possibly using Spring AOP). The idea is to intercept these methods and take the decision to apply them or ...
2
votes
1answer
233 views
Grails - Cannot add a custom validator for a property in the domain class
I am trying to add a custom validator for the String state, which should check if the string country is "usa", then the state should be "Other". If country is not "usa" and state is "other" then it ...
2
votes
1answer
184 views
Grails domain class constructor with id instead of object
My domain class looks like this :
class UserEvent {
User user
Event event
boolean isAttending
}
Generated database table looks has following columns:
[ID , EVENT_ID, USER_ID , ...
0
votes
2answers
587 views
Grails/GORM belongsTo Back Reference Naming
I created the domains in Grails to focus on the business logic behind our process. In several cases, this translates to a back reference that GORM generates that exceeds the Oracle limits and ...
0
votes
1answer
523 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 ...
0
votes
1answer
329 views
Grails Multiple domain classes with belongsTo and default value
I have special case of domain classes structure where three classes presents and they are connected to chain: Event <- Room <- Projector. (All relation ships are one-to-one)
The implementation ...
0
votes
1answer
72 views
Using findBy with same attribute but multiple values
I have a Product domain:
Product {
String name
}
Now I need issuedProductInstance and requestedProductInstance. For that I used findBy as
def find(String issuedProduct,String ...
0
votes
1answer
126 views
access a specific property of domain class in my controller
Hi I have a program where there are two domain classes. One that has different properties of my data objects (e.g. People) and another which is a User domain class which checks the login id and ...
1
vote
2answers
237 views
Grails Domain Embedded
I have this domain model, grails-app/domain, named com.portal.Schedule.groovy having this properties:
Subject subject
Room room
Day day
Time timeStart
Time timeEnd
static embedded = ...
4
votes
2answers
286 views
Update “lastUpdated” Field in Parent Domain Class in Grails
I have a parent domain class the has a hasMany of another domain class. Both the parent and the child domain classes have the lastUpdated and the dateCreated fields. My issue is that when I update a ...
2
votes
1answer
341 views
belongsTo multiple Domain
I have 4 classes, incidents,problems, requests and another is Attachment.
Every domain look like.........
Class Incidents
{
// other fields
static hasOne = [attachment: ...
0
votes
0answers
59 views
grails : how to get userList from Group
I have three class.
class User {
String userFirstName
String userLastName
}
class Group {
List<User> userList
String groupName
static hasMany = [userList: User]
}
...
2
votes
2answers
322 views
Child class object can not delete
I have some domain class Incident,Problem, Category, Impact, Urgency etc.
Class Incident
{
Category category
String subject
Impact impact
}
Class Problem
{
Urgency urgency
...
2
votes
2answers
179 views
grails domain object unexpectedly saved during validation
Considering the following domain classes :
class EnrichmentConfig {
String name
String description
String concept
List fields = []
static hasMany = [fields: FieldConfig]
...
3
votes
1answer
585 views
Grails - how execute code before every save?
Is there a good/standard way to execute some common code before every save() invocation on domain classes?
For example, my domain
class Page {
String url
Boolean processed
Date date
...
0
votes
2answers
81 views
How to map integers (on database) into strings (in views)
I have a domain class:
class MyUser {
..
int sex
int qualification
int occupation
..
}
Suppose I want to constraint these integer categories, for example:
occupation : [0:"not occupied", ...
-1
votes
2answers
136 views
get values of variable defined on controller without writting query in action [closed]
I have the following code in my Controller.
class WorkStationAssetController {
def requestList = Request.list()
def list = {
[requestList :requestList]
}
def ...
1
vote
2answers
410 views
Grails “One to Many” relationship without a table join
I'm new to Grails and GORM and I try to implement a "One to Many" relationship.
I tried the example in the doc :
class Book {
String title
}
class Author {
static hasMany = [books: Book]
...
2
votes
1answer
612 views
Grails: map mysql field of type enum to domain class
How can I map a mysql field of type enum to a grails domain class?
I'm using an existing (legacy) mySQL database with grails v.2.0.3. I'm getting an error for Wrong column type:
failed; nested ...
