List of usage examples for org.springframework.format.datetime DateTimeFormatAnnotationFormatterFactory DateTimeFormatAnnotationFormatterFactory
DateTimeFormatAnnotationFormatterFactory
From source file:com.caocao.server.extend.CustomDateFormatterRegistrar.java
public void registerFormatters(FormatterRegistry registry) { addDateConverters(registry);//from w w w.java 2 s.c o m if (this.dateFormatter != null) { registry.addFormatter(this.dateFormatter); registry.addFormatterForFieldType(Calendar.class, this.dateFormatter); } registry.addFormatterForFieldAnnotation(new DateTimeFormatAnnotationFormatterFactory()); }
From source file:com.xpeppers.phonedirectory.config.WebAppConfig.java
private void addFormattersForFieldAnnotation(DefaultFormattingConversionService conversionService) { conversionService.addFormatterForFieldAnnotation(new NumberFormatAnnotationFormatterFactory()); conversionService.addFormatterForFieldAnnotation(new DateTimeFormatAnnotationFormatterFactory()); }