In controller's action Date argument used
def action(Date start, Long id){
....
}
Data binding by default not works for Date type. During invocation start variable initialized by current time for parameter value '01/05/2016'.
Date binding works well for domains with Date start field
someDomain.properties = params
bindData(someDomain, params)
How to activate it for action arguments?
PS
grails.databinding.dateFormats configured well
Grails 2.4.5
Updated:
I have seen Binding a Grails date from params in a controller , I use provided solution with ValueConverter for custom binding, and it works only for domains and commands binding