In Grails, you can "bindData" in the controller:
Book b = new Book() bindData(b, params)
What if I have a date field with a specific format (e.g. yyyy-MM-dd) from user input? In Spring, we can use registerCustomEditor (). How about Grails?
source share