Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
0answers
127 views

Should I convert my Grails domain relations to use Hibernate Bags? [closed]

In Grails 1.3.7 I've spent quite some time to convert my domain class relations according to Burt's suggestions in http://www.infoq.com/presentations/GORM-Performance Now, Grails 2 supports ...
5
votes
1answer
1k views

Grails min constraint for date validation

I am a newbie in grails and groovy. I have a Project domain-class with start and end date. I want to put in a constraint specifying that the end date needs to be greater than the start date(and then ...
4
votes
1answer
102 views

Need ideas in designing Domain classes Grails

I am learning Grails, I am trying to build a small application. And for now I am working on the registration part. There are 3 different views for registration process 1) As an employee my ...
4
votes
2answers
343 views

Page Refresh(F5) changes the data on the screen after successful save in db in Grails app

I have developed a grails/groovy application for a legacy database which has user maintenance page to (add,edit) user information. The page is using editinplace and ajax to update the information. ...
4
votes
2answers
172 views

Do grails domain classes have to be tied to a database?

I am a complete noob when it comes to grails (and still very noobish when it comes to groovy) so I apologise if this is a dumb question. I am building a simple web app and I want to control portions ...
4
votes
2answers
348 views

When should hasMany be used for N:1 relationships in grails domain classes?

In grails, I can implement an N:1 relationship like this: class Parent { hasMany = [children:Child] } class Child { belongsTo = [parent:Parent] } Now (if addTo and removeFrom is always properly ...
3
votes
2answers
533 views

Grails Integration Test Does NOT Rollback

I'm learning grails from the book "Grails In Action" and I'm trying to run integration tests from the examples. In the book it says that each integration test function should roll back its operations ...
3
votes
2answers
169 views

Grails / Gorm : Difference between delcaring object and describing relationship?

Thanks in advance for your help. I'm having trouble understanding the difference between declaring a domain-object in another domain and specifying the relationship between the domains. I've read ...
3
votes
1answer
195 views

Grails GORM on multiple Forms

Usually I'm using One-to-many relationship by this way : class Study { static hasMany = [ crfs : Crf ] String name ... } class Crf { String title String info ... } I can extend ...
3
votes
2answers
336 views

Accessing DB Without Domain Classes With Grails

I've ran into an issue while trying to put together a Grails app with an AS400/DB2 database. I cannot get most of the files mapped because they do not have a unique field to use as an id. And even if ...
3
votes
1answer
236 views

GORM events not firing in integration tests

Trying to integration test Grails GORM delete on an object with beforeDelete event. Problem is that the beforeDelete event is not being fired in Integration Tests: class ChallengeMembershipTests ...
2
votes
3answers
188 views

Inherit Grails Domain Class properties from a base Class

Im trying to create a Domain Class Constructor that inherits another class properties dynamically. But I cannot get it to work properly. Heres an example: class Example1 { String name; String ...
2
votes
1answer
125 views

Grails, how to find by a record by its foreign key

I have two domains that are a part of a one-to-many relations ship. I was wondering how i can query the child for the parents FK? bellow is the psuedo-code for parent/child Parent: class ...
2
votes
2answers
121 views

How to handle externally stored default values in Domain Class

I want to be able to set default values for some fields in my domain classes. Till now I had a class which stored a Map of settings for my whole project, with a task in mind to move this map into a ...
2
votes
1answer
347 views

Grails Domain Classes Primary Key

class Ctr_country { String ctr_name String ctr_abrev String toString(){ ctr_abrev } } I am using SQLS Express as database. I want the primary key of this class (table) ...
2
votes
2answers
705 views

Where should I place a transient domain class in a grails app?

Where should I place a transient domain class in a grails app? Ie I have an Action class that will be passed about, and used, but never saved. Should this be in the grails-app/domain folder, or ...
2
votes
3answers
1k views

Grails custom validator for domain class

I have a restriction so there could be no more than ConfigurationHolder.config.support.reminder.web.person.max object stored. I didn't find how to add a validator which doesn't relate on particular ...
2
votes
1answer
217 views

How to refactor in Grails

I'm doing a project that requires some refactoring. My domain class is like: Book { static belongsTo[category: category] Category category; String name; } Category { static hasMany [books: Book] ...
2
votes
1answer
505 views

grails won't save but have no error

Hi I have a domain that so simple like the following // page 52 Bankruptcy Questions class FamilyLawFinancial{ Date dateOfTheOrder ; boolean isPartyToFamilyLawProperty = false; boolean ...
2
votes
1answer
253 views

Custom Grails validation

I would like to check to make sure two fields are not equal and one is greater then the other. Say yearBorn and yearMarried. They cannot be equal and yearMarried must be greater then yearBorn.
2
votes
2answers
1k views

Grails - default sort of “hasMany” domain attributes

I'm trying to set default sort of my hasMany attribute using mapping statement. I'm following grails doc but it doesn't work for me (grails 1.3.5). My code looks like: class Note { Calendar ...
2
votes
2answers
348 views

Distinguishing between Grails domain-class fields and getBlah() methods via GrailsDomainClassProperty

I'm writing a Groovy script (as part of a Grails plugin) and I want to get a list of properties for a GrailsDomainClass that a user of my plugin might define. I can do this using ...
2
votes
1answer
236 views

Grails 1.3.5: Updating user table when session is destroyed

I have HttpSessionListener to listen for when sessions are created and destroyed. I have a user domain which has loggedIn boolean column which I update whenever user logs in or logs out which I use ...
2
votes
2answers
847 views

How can I change column name convention in Grails?

For now I have field "String firstName" it converted to "first_name" and i want "firstname" as default in Hibernate. Is it posible?
1
vote
2answers
25 views

How to override the DomainClass.list() in GORM (Grails)

People, I'm facing a problem with grails GORM, my Application is totally dependent of the DomainClass.list() method, it is in all of my create/edit GSPs, but now I need a particular behavior for ...
1
vote
2answers
19 views

How To Put A Constraint On Relationships In A Domain Class, In Grails?

I have a domain three domain class like this : Tasks.groovy class Tasks { static belongsTo = [ user : User ] //other fields Date startDate Date endDate } User.groovy class ...
1
vote
1answer
24 views

Grails - a conditional mapping

Currently I'm developing a webapp which uses Oracle as a database. I've already been informed that my webapp has to work also on Sybase ASE. My Oracle database uses sequences to generate IDs and I ...
1
vote
3answers
32 views

grails-CodeNarc and Service Stateless ruleSet

I am trying to use codeNarc on a grails project, after installing it and running it I've have some rulesets violations messages that I would like to understand and resolve. The first on concern ...
1
vote
2answers
107 views

dateCreated, lastUpdated fields in Grails 2.0

I've got an application that was using Grails 1.3.7 which I've just migrated to Grails 2.0. The application makes use of the automatic 'dateCreated' and 'lastUpdated' fields to manage the timestamps ...
1
vote
3answers
61 views

how to implement soft deletes

Can anyone tell me what would be a good way to implement soft deletes? I can have a deleted property in my class, but my question is how to easily ignore instances which have deleted = true in my ...
1
vote
1answer
54 views

can i change the value of a property from another domain class? - grails

I'm a newbie in grails. i'm having a problem right now in my domain classes. I have 3 domain classes, class Patient,class Nurse and class NursePatient, the class NursePatient is a composite key where ...
1
vote
1answer
34 views

Grails mapping questionnaire data to a bean

This is my first development using Grails. I have a requirement to create a questionnaire. This is my GSP page in which the questions are listed, possible answers for each question is listed and ...
1
vote
1answer
399 views

Grails domain class: unique constraint for multiple columns

Suppose a simple Grails domain class: class Account { String countryId; String userName; String password; static constraints = { ...???... } } It is required that ...
1
vote
1answer
110 views

How to show or hide fields on a GSP based on a selection in a combo-box

I'm still new to grails, so I'm really sorry for asking something like this. I have a domain that could be divided in 3 types, so I'd like to create a combo-box and depending on which selection the ...
1
vote
1answer
39 views

Within a Tab I have two domains

I'm new to grails, so I'm really sorry for asking something like this. I have 3 Classes, Persona which extends to personaFisica and personaJuridica I've created a GSP with a tab and two submit ...
1
vote
3answers
245 views

Using JSON to create an object in Groovy/Grails

I have a Groovy/Grails website that is being used to send data to Android clients via JSON. I have created both the Android client and the Groovy/Grails website; and they can output the same objects ...
1
vote
1answer
121 views

Grails Gorm Partial Save

I have a very basic question in saving objects which I get from a client sent via JSON. I have a customer object which is transfered to the client, after editing the customer its send back to Grails ...
1
vote
1answer
111 views

grails 1.3.7 + 2.0, section 5.2.1.1, Many-to-one and one-to-one

Section 5.2.1.1 has examples A - C, which seem a bit confusing: Example B: Is this still a many-to-1 relationship, like Example A (i.e. same table setup)? At the end it says, "to make a true ...
1
vote
3answers
208 views

Grails - adding custom fields (columns) to all domain objects - automatically

By default when you create a domain class, it will automatically add "id" and "version" column for all the domain classes (tables). What if I want to add a column say for e.g. "isChecked" and this ...
1
vote
1answer
534 views

getting grails 2.0.0M1 config info in domain object, and static scope?

How do I get to the Config.groovy information from a domain object, or from a static scope? I'm using ConfigurationHolder.config.* now, but that and ApplicationHolder are deprecated so I'd like to ...
1
vote
1answer
226 views

Grails get session variable from domain validator

Im sure this is a common scenario, but I haven't found any answers. I have a session-scoped variable that holds the currently signed in user and I need to perform conditional validation by way of a ...
1
vote
1answer
140 views

Adding an array member to Grails scaffolding

I have a domain class with a Collection of simple Strings as one of it's members class Customer { String name; static hasMany = [ aliases:String ] static constraints = { name ...
1
vote
1answer
67 views

Grails domain version value as part of JSON

In a edit page, I am passing the domain object as JSON object to be manipulated at client side using jQuery. render domainClassObject as JSON When I see the response in client side (in firebug for ...
1
vote
1answer
55 views

What is the best approach to collect/define lastvisited information in Grails/spring security?

What is the best practice or approach to get lastvisited information for an user in Grails? For user login, I am using spring security and I want to show few junks of information based on lastvisited ...
1
vote
1answer
124 views

How do I map entities in GORM when pk of one references pk of another

What is the best way to map two entities in GORM when the primary key of one table is also a foreign key from another table. For ex: Here is one table: CREATE TABLE `table_a` ( `a_id` int(11) NOT ...
1
vote
1answer
715 views

Grails: find domain class by name

I want to allow users to traverse the domain classes and print out dumps of stuff. My frist problem: assuming the following works just fine: //this works class EasyStuffController{ def quickStuff ...
1
vote
2answers
197 views

Grails: How to query objects in many to many mapping?

Hello I have the follwing domain classes. class Student { int age static hasMany = [courses:Course] } class Course { String name static hasMany = [students:Student] } I want to find ...
1
vote
1answer
202 views

Why do I receive “No such property” in before* and after* logic of domain classes in unit tests?

I notice that any reference to a property is missing when requiring domain classes in grails unit tests. Somewhere in the Unit Test mockDomain(Event) 10.times { e = new ...
1
vote
0answers
78 views

Specify domain classes directories in Grails

Is there a way to specify the directory in which Grails looks for domain classes? I want to have grails enhance domain classes from grails-app/domain as well as test/domain, when running in the test ...
1
vote
2answers
98 views

How to count on different values in the same query with Grails?

I have a class with a status : class A{ String status } This status can have values 'start','end','inprogress'. I would like get the number of 'start','end' and 'inprogress' in one query. I ...

1 2 3