在spring中date类型转换成string类型

来源:互联网 发布:合作软件开发平台 编辑:程序博客网 时间:2024/06/05 17:43
@InitBinderprotected  void initBinder(WebDataBinder binder) {    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");    binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));}
0 0
原创粉丝点击