use of com.easy.cloud.core.common.log.annotation.EcLogAnnotation in project dq-easy-cloud by dq-open-cloud.
the class EcBaseController method initBinder.
@EcLogAnnotation(logSwitch = false, analysisSwitch = false)
@InitBinder
public void initBinder(WebDataBinder webDataBinder) {
DateFormat dateFormat = new SimpleDateFormat(EcDateFormatUtils.FORMAT_NORMAL_DAY);
webDataBinder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
// webDataBinder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat(DqDateFormatUtils.FORMAT_NORMAL), true));
}
Aggregations