Tagged Questions

1
vote
2answers
39 views

Grails: nested command objects

Hi, In my grails app I have an outer command object that contains a list of other command objects: public class OuterCommand { List<InnerCommand> innerCommands = ListUtils.lazyList([], …
0
votes
1answer
80 views

Grails bindData exclude not excluding

I'm trying to use 'bindData' method and exclude one field like so: bindData(person, params, [exclude: ['responseItems']]); I thought that by listing the 'exclude' parameter, when bindData iterates …
2
votes
2answers
45 views

Grails client side validation

Hi ! How do you (if you) manage client side validation with grails ? Do you use a plugin or do you mirror your constraints using a javascript framework ? Cheers
0
votes
0answers
94 views

grails gorm with multiple data sources

I am working on an application using grails to bridge the gap - supporting legacy POJO code, adding things like better session management. the current implementation relies on 3 database connections …
0
votes
2answers
100 views

How To Know The Cause Of A Validation Error

The following code will throw a grails.validation.ValidationException if the save fails for some reason. But the result is a generic error. How can I know the actual cause of the error so I can report …
0
votes
1answer
52 views

Render Errors From A Service

I call a service that creates a parent and a child record. If an error happens, the service throws a RuntimeException. The RuntimeExceptionis is caught by the controller and then there there is a …
0
votes
2answers
67 views

Typemismatch with I18N Label instead of Attribute Name

My message.properties contains this by default: typeMismatch.java.lang.Double=Property {0} must be a valid number Placeholder {0} is replaced by the Attribute Name. I want to use the Label that is …
1
vote
1answer
194 views

Dependency Injection In Grails Domain Controllers

I'm trying to create a a custom constraint. I've put the logic in a service: class RegExpManagerService { boolean transactional = false def messageSource def …
2
votes
2answers
137 views

parameterized Grails validation messages

Hi, In the messages.properties file in a Grails application I've seen examples of validation messages such as: User.password.size=Size of bar must be between {0} and {1} which applies to class …
0
votes
1answer
393 views

Grails validation of a list objects

I'm trying to get grails to validate the contents of a List of objects, might be easier if I show the code first: class Item { Contact recipient = new Contact() List extraRecipients = [] …