Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
189 views

Rendering command validation errors across a redirect

I cannot render the errors from my command object. It does the job well but my .gsp view does not render the errors I raise. Here is my controller action: def handleModifyProfile2 = { ...
1
vote
1answer
125 views

Grails i18 message properties

I want to change the default message for typemismatch.java.math.BigDecimal in i18 message properties file for different properties. In the documentation it says, use ...
1
vote
5answers
198 views

How to set uniqueness at DB level for a one-to-many association?

My problem is simple but I could not find any GORM syntax for this. Consider the following class: class Article { String text static hasMany = [tags: String] static constraints= { ...
0
votes
1answer
19 views

Grails Constraints with Java Classes and Hibernate Mappings

I have the following Java class defined in src/java package org.davisworld.trip; public class AirportHbm { private long id; private String name; private String iata; private String state; ...
0
votes
2answers
170 views

Grails unit test for domain class insertBefore

How can I test the initBefore method of Groovy Domain-Classes with a unit test in Grails? I created the dummy object but the beforeInsert-method is not called until myObject.save() is invoked and ...
0
votes
2answers
213 views

use Java class as Grails command

I have a bunch of Java classes that I would like to use as command classes in my Grails contollers. A typical example is: class Person { String name Integer age public String getName() ...
0
votes
2answers
196 views

Grails: Property Null error

I've a domain called Modulo with some properties and a Controller with a method that create a object from model and save it, when execute save the shell show this error: La propiedad [{0}] de la ...