Spring MVC コントローラーで異なる日付形式を処理することは可能ですか?
私はこのような設定を知っています
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
binder.registerCustomEditor(Date.class, new CustomDateEditor(
dateFormat, false));
}
私はdd/MM/yyyy
フォーマットを処理できますが、日付もフォーマットで解析したい場合はどうすればよいyyyyMMddhhmmss
ですか? CustomDateEditor
コントローラーに複数の を追加する必要がありますか?