Example usage for org.springframework.format.datetime DateTimeFormatAnnotationFormatterFactory DateTimeFormatAnnotationFormatterFactory

List of usage examples for org.springframework.format.datetime DateTimeFormatAnnotationFormatterFactory DateTimeFormatAnnotationFormatterFactory

Introduction

In this page you can find the example usage for org.springframework.format.datetime DateTimeFormatAnnotationFormatterFactory DateTimeFormatAnnotationFormatterFactory.

Prototype

DateTimeFormatAnnotationFormatterFactory

Source Link

Usage

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());
}