最佳答案
这是因特网上 init 活页夹的代码
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
有人能解释一下吗:
1)为什么使用它,我的意思是,之前的问题是什么,如何用这个函数来解决。所以我想知道原始日期的问题是什么,用这个日期格式解决了?
2)如何从 JSP 格式的角度使用这种格式,我的意思是,如果我们输入日期的文本格式,它转换为特定的格式,然后保存它?
3)它是如何应用格式化的,我的意思是,我们必须在对象类中做一些事情吗?