Class Jsr310DateTimeFormatAnnotationFormatterFactory
java.lang.Object
org.springframework.context.support.EmbeddedValueResolutionSupport
org.springframework.format.datetime.standard.Jsr310DateTimeFormatAnnotationFormatterFactory
- All Implemented Interfaces:
Aware
,EmbeddedValueResolverAware
,AnnotationFormatterFactory<DateTimeFormat>
public class Jsr310DateTimeFormatAnnotationFormatterFactory
extends EmbeddedValueResolutionSupport
implements AnnotationFormatterFactory<DateTimeFormat>
Formats fields annotated with the
DateTimeFormat
annotation using the
JSR-310 java.time
package in JDK 8.- Since:
- 4.0
- Author:
- Juergen Hoeller, Sam Brannen, Kazuki Shimizu
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThe types of fields that may be annotated with the <A> annotation.protected DateTimeFormatter
getFormatter
(DateTimeFormat annotation, Class<?> fieldType) Factory method used to create aDateTimeFormatter
.Parser<?>
getParser
(DateTimeFormat annotation, Class<?> fieldType) Get the Parser to parse a submitted value for a field offieldType
annotated withannotation
.Printer<?>
getPrinter
(DateTimeFormat annotation, Class<?> fieldType) Get the Printer to print the value of a field offieldType
annotated withannotation
.Methods inherited from class org.springframework.context.support.EmbeddedValueResolutionSupport
resolveEmbeddedValue, setEmbeddedValueResolver
-
Constructor Details
-
Jsr310DateTimeFormatAnnotationFormatterFactory
public Jsr310DateTimeFormatAnnotationFormatterFactory()
-
-
Method Details
-
getFieldTypes
Description copied from interface:AnnotationFormatterFactory
The types of fields that may be annotated with the <A> annotation.- Specified by:
getFieldTypes
in interfaceAnnotationFormatterFactory<DateTimeFormat>
-
getPrinter
Description copied from interface:AnnotationFormatterFactory
Get the Printer to print the value of a field offieldType
annotated withannotation
.If the type T the printer accepts is not assignable to
fieldType
, a coercion fromfieldType
to T will be attempted before the Printer is invoked.- Specified by:
getPrinter
in interfaceAnnotationFormatterFactory<DateTimeFormat>
- Parameters:
annotation
- the annotation instancefieldType
- the type of field that was annotated- Returns:
- the printer
-
getParser
Description copied from interface:AnnotationFormatterFactory
Get the Parser to parse a submitted value for a field offieldType
annotated withannotation
.If the object the parser returns is not assignable to
fieldType
, a coercion tofieldType
will be attempted before the field is set.- Specified by:
getParser
in interfaceAnnotationFormatterFactory<DateTimeFormat>
- Parameters:
annotation
- the annotation instancefieldType
- the type of field that was annotated- Returns:
- the parser
-
getFormatter
Factory method used to create aDateTimeFormatter
.- Parameters:
annotation
- the format annotation for the fieldfieldType
- the declared type of the field- Returns:
- a
DateTimeFormatter
instance
-