Does anybody know how I could get the fieldError to print out in the example below.

for each item with an error, I would like to print custom error messages that I have defined in the messages.properties file

at the moment all this does is print the default error codes

item.errors?.allErrors?.each{ 
println it.toString() 
};

I have seen other examples where you can lookup an error code for a field e.g.

it.getFieldError('title').code

but I would like to convert the default message into my new error message and print that

thanks for your help

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need access to the messageSource bean, e.g. with

def messageSource

in your controller or service. Then you can access the messages with

def locale = Locale.getDefault()
for (fieldErrors in bean.errors) {
   for (error in fieldErrors.allErrors) {
      String message = messageSource.getMessage(error, locale)
   }
}
link|improve this answer
put def messageSource (in controller or service) Thanks this worked. item.errors?.allErrors?.each{ println messageSource.getMessage(it, null) }; I also found a good link which explains this better johnrellis.blogspot.com/2010/02/… – MTH Jul 16 '10 at 22:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.