0
votes
1answer
36 views

grails, unit test mock domain with assigned id

I am using assigned id in my domain class Book { Integer id String name static mapping = { id generator: 'assigned' } } so to add a new book: def book = new Book([name: "The ...
0
votes
0answers
47 views

What technologies are important to learn with Grails? [closed]

I have been reading a lot about Groovy and Grails lately, and the books I'm reading mention things like Spring, Hibernate, JPA, etc. quite a bit. Is it important for a Grails developer (and relative ...
0
votes
4answers
82 views

Dynamically creating a query based on params being passed to a controller

In my task management application, users should be able to filter tasks based on : assignedTo, priority, status and/or dueDate I am not sure on how to create a dynamic query in that it will build a ...
1
vote
2answers
65 views

HIbernate Encrypting and Decrypting in Getters/Setters?

The problem is to provide ability to encrypt certain Entity attributes. Since the Entities are groovy classes and generated at run time, I had incorporated the encryption logic in the setter and ...
0
votes
1answer
53 views

Nested Inline Domain Class Edit

I have a domain-class called UserForm with a List object called securityVerifications class UserForm { List securityVerifications = new ArrayList() static hasMany = [ ...
0
votes
1answer
35 views

Referring to Related Record ID In Controller On Save()

I'm still new to Grails and GORM and I got stumped on this and wasn't able to figure out what I am doing wrong. The intent is to automatically relate the record to the logged in user through the ...
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, ...
3
votes
3answers
85 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
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 ...
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
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 ...
0
votes
1answer
55 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 ...
3
votes
2answers
421 views

How to fetch records in grails by max date and group at same time

I have a table that looks like this: id name shade date_created ---- ----- ------- --------------- 1 Red bright 10-28-2012 2 Orange light ...
1
vote
2answers
208 views

Grails GORM: list all with nested property

My (simplified) domain model looks like this: class Student { static hasMany = [professions:StudentProfession]; } class StudentProfession { static belongsTo = [student:Student]; ...
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 ...
0
votes
1answer
85 views

how does save() work in Grails?

If I have the following method in my controller: def save() { def userInstance = new User(params) if (userInstance.save(flush: true)) { def file = request.getFile("myFile") ...
0
votes
3answers
100 views

Grails -Custom Sorting with associated domain class

I have domain Training class Training { static belongsTo = [venue: Venue] } Venue class Venue { static belongsTo = [city: City] } City class City { String name } now ...
0
votes
1answer
392 views

Populate Grails g:select from function

Trying to populate a g:select from a function in my controller, is it possible? Currently we have this: def run(Long id) { def reportInstance = Report.get(id) def listPromptValues = ...
2
votes
1answer
135 views

Overriding event closure on Grails GORM domain class for unit testing

I'm working on a fresh Grails project and recently noticed the default convention in the Spring Security Core generated User class now auto-encodes the password via a beforeInsert/Update event. That's ...
0
votes
1answer
178 views

Grails using query in g:select with service

Fairly new to the Grails model, and having a little trouble getting around using a service for my database transactions. Service: class ReportService { def dataSource def ...
1
vote
1answer
77 views

Filtering out objects according to their fields in a GORM query

I'm new at grails and stuck with a performance issue. I have three domain classes: User{ Set authorities static hasMany = [authorities: Role] } Organization{ //more code } UserOrganization{ User ...
1
vote
2answers
111 views

Why GORM is using methodMissing

As I read here, grails is using methodMissing to inject GORM methods to the domain classes, but having said that methodMissing are expensive to execute cause only occur in the case of failed dispatch, ...
0
votes
2answers
532 views

Grails object is not an instance of declaring class

I'm getting the following error when I do a with criteria. Pls help. Error: 2012-12-02 19:50:43,678 [http-8080-2] ERROR property.BasicPropertyAccessor - IllegalArgumentException in class: ...
2
votes
1answer
300 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
401 views

Grails findAll with sort, order, max and offset?

I want to integrate sort, order, max and offset in a findAll query. The following works fine: def books = Book.findAll("from Book as b where b.approved=true order by b.dateCreated desc", [max: max, ...
1
vote
1answer
283 views

GORM: mapping large text fields database agnostically

I have a Grails application that will run against either a SQL Server or Oracle backend. I am using GORM as an ORM. I want to map a large text field in a way that supports both database types. In my ...
0
votes
3answers
163 views

Grails one-to-many relationship with index property

In my Grails app, I have two domain classes with a one-to-many relationship, e.g. class Parent static hasMany = [children: Child] } class Child { Integer index static belongsTo = ...
2
votes
1answer
138 views

difference between “grails console” and “grails”, then “console”

I just started learning Grails and I'm trying to play around with the database using the grails console, but I notice that there's a difference between running grails console and running grails, then ...
0
votes
2answers
70 views

GORM - Update object without retrieving it first

I'd like to be able to update a previously persisted object for which I have an id without having to retrieve it first. The main thing that I'm trying to avoid is having to copy multiple values into ...
0
votes
1answer
74 views

Grails Domain Class Abstract/Non-Abstract Dynamic Check

I have a loop in my controller that does something like this: for(d in grailsApplication.domainClasses) { def c = d.getClazz().count() // construct table containing object instance counts } ...
5
votes
1answer
198 views

customising GORM basic collections

As well as associations between different domain classes, GORM also supports mapping of basic collection types. . For example, the following class creates a nicknames association that is a Set of ...
0
votes
1answer
79 views

Grails Query, How to get a specific field in the result?

I have the domain class: class Product { String barcode String name String measurement static constraints = { } } Now, I want to get a list with only one field like "name": ...
1
vote
0answers
55 views

Searchable plugin with extended domain classes

Here are a few domain classes and their relationships: class Vehicle { Integer hireRatePerHour } class Bus extends Vehicle { Integer numberOfSeats } class Truck extends Vehicle { ...
0
votes
1answer
248 views

Grails data binding - Cannot make an immutable entity modifiable

On a Grails 2.1.0 I am trying to dynamically updating a field on a domain class. The object gets binded and it looks fine, until the save method is called, which throws the following exception: ...
1
vote
1answer
97 views

Grails GORM: Searching through children of an domain object

Please help me understand how to write this code correctly in Groovy / Gorm I have a PageComponent domain class that has many Content's. I want to see if a particular PageComponent contains a Content ...
0
votes
1answer
109 views

Mock dynamic finder

In tests i need to override function of some domain class, like this SomeDomain.countBySomeField(Paramater) To solve this i tried @Mock([SomeDomain]) class SomeDomainTests ... ... void test() ...
2
votes
2answers
723 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
1answer
87 views

Grails --illegal attempt to dereference collection error in Hql

I have a Training domain class class Training { String type Date createdOn Date modifiedOn static belongsTo = [course: Course] static hasMany = [attachments: Attachment] ...
0
votes
1answer
648 views

Grails Hql query for one to many association

I have a Training domain class class Training { String type Date createdOn Date modifiedOn static belongsTo = [course: Course] static hasMany = [attachments: Attachment] ...
5
votes
1answer
689 views

Grails 2.1: Setting sessionFactory and dataSource from custom Spring configuration

I've got a complex, custom-configured Hibernate setup in Spring (including JPA entities, session factory and data source definitions) that I want to use in Grails 2.1.0. Because of that, I want to ...
0
votes
1answer
224 views

How do I save GORM objects with multiple many-to-one relationships?

Let's say I have the following hierarchy of domain classes. class School { String name static hasMany = [teachers: Teacher, students: Student] } class Teacher { String name static ...
2
votes
1answer
156 views

Are Rails-style chained queries available in Grails?

I am writing a scheduling feature in a new Grails 2.1.0 application. I am transitioning from a Ruby on Rails project, so much of my query strategy derives from Rails style. I have the following domain ...
5
votes
1answer
685 views

MongoDB issues with Grails Scaffolding (do not occur in MySQL)

I tried using MongoDB 2.0.6 to replace MySQL 5.5.25 for a test Grails 2.1 App and am encountering some strange problems. Issues when using MongoDB but not MySQL: When using Scaffolding, I cannot ...
0
votes
1answer
86 views

GORM/groovy automatic casting of String into various objects

Another newbie issue. I have a situation where I have to assign a value to domain class property in groovy. The code is cf."$it.key" = it.value the property type for cf."$it.key" can be ...
3
votes
1answer
337 views

GORM - add child onto parent and save is giving groovy.lang.MissingMethodException

This is my domain model, a survey has many questions, and each question has many repsonses : class Survey { String name String customerName static hasMany = [questions: SurveyQuestion] ...
1
vote
1answer
81 views

how to create a reference relationship in groovy domains?

i just wanted to make a drop down box appear on the view page of my main domain. I tried doing static hasOne = [sex: Sex, accountType: accountType] and I did this on the main domain but it would ...
5
votes
1answer
652 views

Grails/Groovy domain classes inheritance cast

I have modeled my domain classes in Grails with inheritance as shown below. abstract class Profile{ } class Team extends Profile{ } class User extends Profile{ } class B{ static hasMany = ...
1
vote
0answers
378 views

Grails - Changes domain object in beforeValidate() not persisted

I have a domain object that I am changing a property value on inside of the beforeValidate() event. If this property is the only one changed on the object, nothing seems to get persisted to the ...
1
vote
0answers
237 views

GORM inhertiance and fetching the super class

I have the following grails domain objects abstract class A { String name } class B extends A { String propertySpecificToB } class C extends A { String propertySpecificToC } and I can ...
1
vote
1answer
205 views

Grails One-To-Many with abstract class

In our application we have a Player which can have game and practice plans, therefore we designed the abstract class Plan and two derived classes GamePlan and PracticePlan. In the database derived ...

1 2 3 4 5