
19
Aug, 14
Grails: Arguments In Custom Validator Error Message
Grails provides us many inbuilt validators like nullable, blank, email, etc. If you want you can create our own custom validators like: class CalendarEvent { String title Date startDate Date endDate static constraints = { endDate nullable: false, validator: { val, obj...
Recent Comments