Uses of Interface
org.springframework.format.FormatterRegistry
Packages that use FormatterRegistry Package Description org.springframework.format An API for defining Formatters to format field model values for display in a UI.org.springframework.format.datetime Formatters forjava.util.Date
properties.org.springframework.format.datetime.joda Integration with Joda-Time for formatting Joda date and time types as well as standard JDK Date types.org.springframework.format.datetime.standard Integration with the JSR-310java.time
package in JDK 8.org.springframework.format.support Support classes for the formatting package, providing common implementations as well as adapters.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient
.org.springframework.web.reactive.config Spring WebFlux configuration infrastructure.org.springframework.web.servlet.config.annotation Annotation-based setup for Spring MVC.Uses of FormatterRegistry in org.springframework.format
Methods in org.springframework.format with parameters of type FormatterRegistry Modifier and Type Method Description void
FormatterRegistrar. registerFormatters(FormatterRegistry registry)
Register Formatters and Converters with a FormattingConversionService through a FormatterRegistry SPI.Uses of FormatterRegistry in org.springframework.format.datetime
Methods in org.springframework.format.datetime with parameters of type FormatterRegistry Modifier and Type Method Description void
DateFormatterRegistrar. registerFormatters(FormatterRegistry registry)
Uses of FormatterRegistry in org.springframework.format.datetime.joda
Methods in org.springframework.format.datetime.joda with parameters of type FormatterRegistry Modifier and Type Method Description void
JodaTimeFormatterRegistrar. registerFormatters(FormatterRegistry registry)
Uses of FormatterRegistry in org.springframework.format.datetime.standard
Methods in org.springframework.format.datetime.standard with parameters of type FormatterRegistry Modifier and Type Method Description void
DateTimeFormatterRegistrar. registerFormatters(FormatterRegistry registry)
Uses of FormatterRegistry in org.springframework.format.support
Classes in org.springframework.format.support that implement FormatterRegistry Modifier and Type Class Description class
DefaultFormattingConversionService
A specialization ofFormattingConversionService
configured by default with converters and formatters appropriate for most applications.class
FormattingConversionService
AConversionService
implementation designed to be configured as aFormatterRegistry
.Methods in org.springframework.format.support with parameters of type FormatterRegistry Modifier and Type Method Description static void
DefaultFormattingConversionService. addDefaultFormatters(FormatterRegistry formatterRegistry)
Add formatters appropriate for most environments: including number formatters, JSR-354 Money & Currency formatters, JSR-310 Date-Time and/or Joda-Time formatters, depending on the presence of the corresponding API on the classpath.Uses of FormatterRegistry in org.springframework.test.web.reactive.server
Method parameters in org.springframework.test.web.reactive.server with type arguments of type FormatterRegistry Modifier and Type Method Description WebTestClient.ControllerSpec
WebTestClient.ControllerSpec. formatters(Consumer<FormatterRegistry> consumer)
Register formatters and converters to use for type conversion.Uses of FormatterRegistry in org.springframework.web.reactive.config
Methods in org.springframework.web.reactive.config with parameters of type FormatterRegistry Modifier and Type Method Description protected void
DelegatingWebFluxConfiguration. addFormatters(FormatterRegistry registry)
protected void
WebFluxConfigurationSupport. addFormatters(FormatterRegistry registry)
Override this method to add customConverter
and/orFormatter
delegates to the commonFormattingConversionService
.default void
WebFluxConfigurer. addFormatters(FormatterRegistry registry)
Add customConverters
andFormatters
for performing type conversion and formatting of annotated controller method arguments.void
WebFluxConfigurerComposite. addFormatters(FormatterRegistry registry)
Uses of FormatterRegistry in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation with parameters of type FormatterRegistry Modifier and Type Method Description protected void
DelegatingWebMvcConfiguration. addFormatters(FormatterRegistry registry)
protected void
WebMvcConfigurationSupport. addFormatters(FormatterRegistry registry)
Override this method to add customConverter
and/orFormatter
delegates to the commonFormattingConversionService
.default void
WebMvcConfigurer. addFormatters(FormatterRegistry registry)
AddConverters
andFormatters
in addition to the ones registered by default.void
WebMvcConfigurerAdapter. addFormatters(FormatterRegistry registry)
Deprecated.AddConverters
andFormatters
in addition to the ones registered by default.