`
MafiaDada
  • 浏览: 25063 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Grails - binding a customized date format

阅读更多
It has been possible to bind a date directly since long before Grails 1.3. The steps are:

(1) Create a class that registers an editor for your date format under grails-app/utils:

import org.springframework.beans.PropertyEditorRegistrar
import org.springframework.beans.PropertyEditorRegistry
import org.springframework.beans.propertyeditors.CustomDateEditor
import java.text.SimpleDateFormat

public class CustomDateEditorRegistrar implements PropertyEditorRegistrar {

    public void registerCustomEditors(PropertyEditorRegistry registry) {

        String dateFormat = 'yyyy-MM-dd'
        registry.registerCustomEditor(Date, new CustomDateEditor(new 
        SimpleDateFormat(dateFormat), true))
    }
}


(2) Make Grails aware of this date editor by registering the following bean in grails-app/conf/spring/resources.groovy

beans = {
    customPropertyEditorRegistrar(CustomDateEditorRegistrar)
}


Reference:
http://stackoverflow.com/questions/2871977/binding-a-grails-date-from-params-in-a-controller
http://grails.1312388.n4.nabble.com/Grails-1-1-1-change-in-binding-date-properties-td1323105.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics