弹簧MVC中init粘结剂的用途是什么
2022-08-31 13:53:09
这是互联网上用于初始化绑定器的代码
@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)它如何应用格式化,我的意思是,我们是否必须在对象类中做些什么?