1
vote
1answer
31 views

STS IDE underline domain fields

I have the following situation: I have a domain and I had to remove a field from it, but this field is referenced in several different locations and grails does not capture this error during ...
0
votes
0answers
60 views

Grails application Domain is not mapped issue

We have a Grails application that we have been maintaining for over a year. But recently we started getting errors like org.hibernate.hql.ast.QuerySyntaxException: CareAlert is not mapped [from ...
1
vote
1answer
238 views

Keeping Grails validation code in domain objects

Lots of the Grails controller examples I've seen show you how to add validation code to a command class that gets passed to and from the view, like this: class RegisterCommand { String username ...
0
votes
1answer
55 views

how to make a domain object(data) available everywhere? Grails

I want to know how to make a domain object or its data available across the system everywhere in grails? Like sort of syntex do i need to use to make it happen. ATM my app's user ...
0
votes
2answers
167 views

Grails design for domain class initialization from static data

I have some data, stateNames, to instantiate an instance of the object Country. Right now, I will only have one Country but stateNames for each country should be different. What is the best way to ...
1
vote
0answers
223 views

Using dynamic scaffolding with a inlist constraint and dynamic finders

Grails 2.0.4 - Using dynamic scaffolding with a inlist constraint and dynamic finders. I am trying to use a dynamic finder in the inList constraint of a domain object. If I change the constraint ...
0
votes
1answer
70 views

If I update a column that is part of a composite id in a Grails domain, will model.save() work?

The domain has 4 columns part of a composite id: id composite: ['exemptionTermCode', 'exemptionCode', 'exemptionClassification', 'exemptionPayType'] In the controller, a ugly parody of a REST ...
0
votes
0answers
123 views

Grails Solr with nested domain objects

I have a nested domain objects that got indexed into Solr as follows... class Message { @Solr(field="maintag") String maintag = 'General' @Solr(field="occasion") static belongsTo = ...
3
votes
1answer
705 views

is there a way to hide fields on the view part of the grails crud dynamic scaffolding

I was wondering if there is another way of making a certain field of a domain to not appear in the views pages of the dynamic scaffolding capability of grails? I can do the generate-all command on ...
2
votes
2answers
299 views

is there a date contraint in grails?

I am using. Date dateOfBirth static constraints = { dateOfBirth blank: false, date: true } Is this allowed I am after a date constraint and I also want to specify the format how can ...
2
votes
2answers
247 views

Grails domain custom error messages

I am working in a grails application, I have many domains in the applications, more than 50! The error message generated are default, I have the following in my message.properties file ...
0
votes
1answer
299 views

issues with <g:each> tag iteration in Grails

I'm new to grails and I am trying to display all the data of a domain class from the database in a table. When I open the gsp file my table is blank. I'm not sure what I am doing wrong since I have ...
0
votes
1answer
62 views

Grails - how to pass list of values to a domain class

I am trying achieve the following SQL using Grails. “Select * from table1 where col1=’COL1’ and col2 in(‘COL2_1’,’COL2_2’,….) and col3=1” I can get the col2 map and not sure how to pass this map ...
0
votes
1answer
120 views

Grails domain class

I have defined the following domain class: class Content { Map i18nDescription = [:] ... } If run the following code content.i18nDescription['it'] = "desc desc...." content.save() I get ...
0
votes
2answers
63 views

Grails Referencing Objects in Domain Model

I have a simple question, for which I couldn't find answers in the web. Which of the following domain models is more efficient: class Text { User author static constraints = {} } class ...
0
votes
2answers
429 views

domains have some common fields,extends domain or embedded?

when i design database.I use embedded to embed common fields.but it's can't init dateCreated and createdBy,what'd i do?extends domain or embedded is right way to handle common fields? code to say? ...
0
votes
2answers
211 views

Grails: Eliminating ConfigurationHolder from custom validator in domain class

I have a custom validator in a domain class that refers to a config property: accountExpirationDate ( nullable:true, validator: { val, obj -> if (val > new Date() + ...
0
votes
1answer
144 views

I want to use searchable plugin in serializable domain

I want to use searchable plugin in serializable domain. Now the problem is that it doesnt compile if I add this code: class Product implements Serializable { static transients=['searchable'] ...
0
votes
1answer
121 views

can we have multiple aliases for a Domain Class Attribute in grails

I have many domain classes in my application an for Audit logging I need the name attribute of each Domain class. unfortunately the name attribute is not generic in all Domains. In my Audt log class ...
3
votes
2answers
256 views

Does Grails has domain.find-by… option “:select” to limit column like rails?

In rails,we can use Order.find(:all,:select=>"id,name...... or Order.where(....).select("id,name") to limit the column. But i can not find the similar way in Grails. so can you give me some help for ...
0
votes
1answer
113 views

custom fields in csv

I want to put only certain fields of domain in csv being generated. how can that be done? I have a order class which contains before update and afterInsert. I have kept them as transient. but still ...
0
votes
2answers
103 views

how to not specify all Domain property values when saving Domain instance

I am newbie to grails. I have User domain class with 85 fields and I am doing an operation to update only address field for example. Right now for any save operation on the User domain I have to ...
0
votes
2answers
706 views

getting domain class property value by its String name

May be a basic question.. I am doing MyDomain.dirtyPropertyNames.each { aInstance.oldVal = newDomainObject.getPersistentValue(it) aInstance.newVal = ? // how to get the property value here from the ...
2
votes
1answer
881 views

getting old values of updated domain properties in grails

I am trying to implement the beforUpdate event in grails domain classes I need to audit log both the old and new values of the Domains attributes. I see that we can use the isDirty check or use ...
0
votes
1answer
72 views

I want the object created to be accessed in the domain afterInsert is done

how do acces the current object created in the afterInsert trigger of the domain? eg. I want to keep the id of object created in some other domain after the object is created I have a domain order ...
0
votes
1answer
283 views

Grails - Copying hasMany relationships from one domain object to another?

During an archive process I am copying the details from an existing domain object to a new instance of that domain. Both domain objects have a hasMany relationship: static hasMany = [pets:Pet] When ...
0
votes
1answer
259 views

Grails - Hibernate/Validation of Domain object list

With Grails, you have the save meta method attached to the Domain object. I have a list of objects that I want to save all together. But, if one of these fails, I want the whole 'transaction' to fail: ...
0
votes
1answer
339 views

Grails mongodb-morphia plugin - dynamically set domain collection mapping

I would like to map a domain class to a DBCollection based on a param set in a grails app. I'm relatively new to Spring, Grails, and MongoDB. I have a mongodb database with several large ...
0
votes
1answer
686 views

Domain object string list - Adding on the fly

Maybe this is an issue with persistance and the domain object. So I have a list of manual notes that can be added to a person. My person class looks similar to this (I've wrapped the object in ...
0
votes
2answers
335 views

Grails hasMany error creating beans

I'm creating a (theoretically) simple hasMany relationship within a domain class. I have two tables with a foreign key relationship between the two. Table 1's domain object is as follows: ...
0
votes
1answer
127 views

How Do I Decide My Domain Model In This Case?

I need to develop a application for a user's management in a IT Project. This is done in order to learn Grails. I have some problem to start with : In my sample app, a user has many tasks, belongs ...
6
votes
3answers
1k views

Grails: How to combine domain objects' errors with command objects' errors?

Suppose I have User domain class and RegistrationCommand class. So when user is registering on website there are two steps for data validation: RegistrationCommand constraints validation. User ...
0
votes
1answer
85 views

Grails deletes referenced records by other domain object?

I am a bit puzzled on the following.. A domain model consists of a Person who has Addresses, these Address can also be referenced by other Persons.. So Person A has addresses 1, 2, 3 and Person B ...
0
votes
1answer
119 views

How Domain Modeling In Grails Affected By The Field Attributes?

Lets say I have a domain class named Tag in my Grails application. class Tag { String name // line number 1 User user // Line number 2 static constraints = { } static ...
2
votes
1answer
441 views

How to create a “view” domain object in Grails

I'm trying to adapt a legacy database to a grails application and I'm not sure how can I do it on grails. I have a huge table (with columns colA, colB, ..., colZ) that I only want to map some of them ...
0
votes
1answer
476 views

Using transient property in findBy or listOrderBy methods

I have a domain class using some transient property foo. Now I want to use listOrderByFoo on this property but I get the error "could not resolve property: foo". Is there any way to use transient ...
5
votes
1answer
743 views

How to get the name of the table GORM object is mapped to?

Say I have something like: class Foo { static mapping = { table 'foo_table' } } How can I get the name of foo_table if I have a reference to an instance of this object?
0
votes
1answer
300 views

Grails: custom constraint error messages

I have class like this class Account{ AccType type ; static constraints ={ type(nullable:false); } } and in grails/i18n/message.properties I wrote: account.type.null = Please ...
0
votes
1answer
267 views

Grails domain ID column validation issue

I have a simple domain object class MyDomain { String id String name static constraints = { id unique:true name nullable:true } static mapping = { table 'schema.MyDomain' ...
0
votes
0answers
128 views

Grails Unidirectional constraints

Currently I'm having a problem enforcing foreign key constraints on validation/save. I've tried both an integration test and a unit test. The unit test had mocked domains, the integration test did ...
1
vote
1answer
393 views

Grails json cells with enum

In my code I have a domain object with an Enum type in it. That enum type saves and retrieves fine from the database. I am converting a list of domain objects into json cells. All fields except the ...
0
votes
2answers
235 views

What’s the best approach to work with in memory domain objects in Grails?

I’m working on a Grail’s project that has some Domain objects not persisted on the database. They are managed thru a REST API, so all their CRUD operations will be done with this API instead of the ...
0
votes
3answers
85 views

Is it possible to set a scope to a domain class?

I'd like to know if it's possible with grails to specify a scope for the domain classes. Few words to explain how my application is working at the moment: - database access is done through an ...
0
votes
0answers
662 views

Binding grails domain in command object

In my app I'm modelling a poker event. I have simple domain, which contains only name of poker game. I have a web flow for defining poker event. On every step of my flow, I'm using command objects. ...
0
votes
2answers
690 views

Getting bean properties names in Grails

I'm trying to write a tag, which will render my bean properties and corresponding values. I want the default behaviour be to render all properties from the bean. So I need somehow get all property ...
0
votes
1answer
140 views

What is a good way to model city, regions and postcodes?

I am thinking about the "best" way to model city, region, postcodes for usage in different countries. (Application should be used in different languages) My first guess is: class City { String ...
2
votes
1answer
2k views

Interfaces in Groovy

I'm about to start a social web app project. While i was designing classes , i decided to define interfaces like "commentable" or "likeable" to use them when needed. Yet i couldn't figure it out how ...
0
votes
1answer
867 views

grails - how to save ArrayList in db

I use grails-1.3.2 and hbase plugin. I have some difficulty in creating one-to-Many association with hbase (i can work with hibernate), so i decided to try create one-to-Many association with using ...
1
vote
1answer
3k views

Grails / Groovy - Domain Object - Map of its Properties

How can I get a map of the key/values of only the user-defined properties on one of my domain objects? Problem is if I do this myself, I get my properties plus class, metaClass, constraints, ...
8
votes
2answers
694 views

How do I determine if a class is a Grails domain object?

For an arbitrary object what is the easiest way to determine if the type of the object is a Grails domain class?

1 2