grailsbindingcommand-objects

bind date to command object in Grails


I have a date (as a string) being submitted. I'd like to map this to a command object. I have looked around quite a bit and found no great resource on how to do this mapping within a command object to a real date.

If I were to do this in the controller itself I could just do the following, however this doesn't allow me to easily map into my command object.

def endDate = params.date('endDate', 'MM/dd/yyyy')

For my command object, the closest I've been able to get is to override the getter and setter for the date object. Both need to be overridden or else the setter is not used. This is what I first tried (set the String to Date, but get the Date). So this doesn't use the setter:

@grails.validation.Validateable
class TaskCreateCommand {

    Date startDate


    public void setStartDate(String dateStr){
        this.start = Date.parse('MM/dd/yyyy', dateStr)
    }

}

This doesn't give any runtime problems, but is useless because I can't pull out the actual Date object.

@grails.validation.Validateable
class TaskCreateCommand {

    Date startDate


    public void setStartDate(String dateStr){
        this.start = Date.parse('MM/dd/yyyy', dateStr)
    }

    public String getStartDate(){
        return start.toString()
    }
}

Solution

  • Co-incidentally I was looking at the same problem today, and followed this answer from @Don. I was able to bind a date properly to the command object.

    @Validateable
    class BookCommand {
        String name
        Date pubDate
        Integer pages
    }
    
    //Controller
    def index(BookCommand cmd) {
            println cmd.name
            println cmd.pages
            println cmd.pubDate
    
            render "Done"
        }
    
    //src/groovy
    class CustomDateEditorRegistrar implements PropertyEditorRegistrar {
        public void registerCustomEditors(PropertyEditorRegistry registry) {
            String dateFormat = 'yyyy/MM/dd'
            registry.registerCustomEditor(Date, new CustomDateEditor(new SimpleDateFormat(dateFormat), true))
        }
    }
    
    //URL
    http://localhost:8080/poc_commandObject/book?name=Test&pages=10&pubDate=2012/11/11
    
    //Println
    Test
    10
    Sun Nov 11 00:00:00 EST 2012