赞
踩
@DateTimeFormat在spring-context依赖下,包路径:
package org.springframework.format.annotation
功能:
当form表单中出现时间字段需要跟pojo对象中的成员变量进行数据绑定时,springmvc框架中的时间数据无法自动绑定,便会报错BindException。
这是springmvc框架的问题,要解决该问题,让页面传递回来的时间类型的数据在controller中可以被接受,需要在pojo中,对时间类型的属性标注格式化注解@DateTimeFormat。
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date beginCreateTime;//查询 开始添加时间
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
private Date endCreateTime;//查询 结束添加时间
可以将形如2022-12-01 12:12:00的字符串转换为java.util.Date类型。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。