@InitBinder
public void initBinder(ServletRequestDataBinder binder) {
/**
* 自动转换日期类型的字段格式
*/
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
/**
* 自动转换double类型的字段格式
*/
binder.registerCustomEditor(Long.class, new CustomNumberEditor(Double.class, true));
}
java时间序列化
最新推荐文章于 2024-08-16 08:24:52 发布
由于未提供博客具体内容,无法生成包含关键信息的摘要。
2291

被折叠的 条评论
为什么被折叠?



