use of org.apache.dubbo.admin.controller.editors.CustomLocalDateTimeEditor in project incubator-dubbo-ops by apache.
the class ApiDocsController method initBinder.
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
binder.registerCustomEditor(LocalDate.class, new CustomLocalDateEditor());
binder.registerCustomEditor(LocalDateTime.class, new CustomLocalDateTimeEditor());
}
Aggregations