Package | Description |
---|---|
org.springframework.beans |
This package contains interfaces and classes for manipulating Java beans.
|
org.springframework.beans.factory.config |
SPI interfaces and configuration-related convenience classes for bean factories.
|
org.springframework.beans.factory.support |
Classes supporting the
org.springframework.beans.factory package. |
org.springframework.context.support |
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
|
org.springframework.core.convert.converter |
SPI to implement Converters for the type conversion system.
|
org.springframework.core.convert.support |
Default implementation of the type conversion system.
|
org.springframework.expression.spel.support | |
org.springframework.format.support |
Support classes for the formatting package,
providing common implementations as well as adapters.
|
org.springframework.http.converter |
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
|
org.springframework.validation |
Provides data binding and validation functionality,
for usage in business and/or UI layers.
|
org.springframework.web.bind.support |
Support classes for web data binding.
|
org.springframework.web.servlet.handler |
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
|
Modifier and Type | Method and Description |
---|---|
ConversionService |
PropertyEditorRegistrySupport.getConversionService()
Return the associated ConversionService, if any.
|
ConversionService |
ConfigurablePropertyAccessor.getConversionService()
Return the associated ConversionService, if any.
|
Modifier and Type | Method and Description |
---|---|
void |
PropertyEditorRegistrySupport.setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
void |
ConfigurablePropertyAccessor.setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
Modifier and Type | Method and Description |
---|---|
ConversionService |
ConfigurableBeanFactory.getConversionService()
Return the associated ConversionService, if any.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableBeanFactory.setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
Modifier and Type | Method and Description |
---|---|
ConversionService |
AbstractBeanFactory.getConversionService() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractBeanFactory.setConversionService(ConversionService conversionService) |
Modifier and Type | Method and Description |
---|---|
ConversionService |
ConversionServiceFactoryBean.getObject() |
Modifier and Type | Method and Description |
---|---|
Class<? extends ConversionService> |
ConversionServiceFactoryBean.getObjectType() |
Constructor and Description |
---|
ConvertingComparator(Comparator<T> comparator,
ConversionService conversionService,
Class<? extends T> targetType)
Create a new
ComparableComparator instance. |
Modifier and Type | Interface and Description |
---|---|
interface |
ConfigurableConversionService
Configuration interface to be implemented by most if not all
ConversionService
types. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultConversionService
A specialization of
GenericConversionService configured by default with
converters appropriate for most environments. |
class |
GenericConversionService
Base
ConversionService implementation suitable for use in most environments. |
Constructor and Description |
---|
ConvertingPropertyEditorAdapter(ConversionService conversionService,
TypeDescriptor targetDescriptor)
Create a new ConvertingPropertyEditorAdapter for a given
ConversionService
and the given target type. |
Constructor and Description |
---|
StandardTypeConverter(ConversionService conversionService)
Create a StandardTypeConverter for the given ConversionService.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultFormattingConversionService
A specialization of
FormattingConversionService configured by default with
converters and formatters appropriate for most applications. |
class |
FormattingConversionService
A
ConversionService implementation
designed to be configured as a FormatterRegistry . |
Constructor and Description |
---|
ObjectToStringHttpMessageConverter(ConversionService conversionService)
A constructor accepting a
ConversionService to use to convert the
(String) message body to/from the target class type. |
ObjectToStringHttpMessageConverter(ConversionService conversionService,
Charset defaultCharset)
A constructor accepting a
ConversionService as well as a default
charset. |
Modifier and Type | Method and Description |
---|---|
ConversionService |
DataBinder.getConversionService()
Return the associated ConversionService, if any.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractPropertyBindingResult.initConversion(ConversionService conversionService) |
void |
DataBinder.setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
Modifier and Type | Method and Description |
---|---|
ConversionService |
ConfigurableWebBindingInitializer.getConversionService()
Return the ConversionService which will apply to every DataBinder.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableWebBindingInitializer.setConversionService(ConversionService conversionService)
Specify a ConversionService which will apply to every DataBinder.
|
Constructor and Description |
---|
ConversionServiceExposingInterceptor(ConversionService conversionService)
Creates a new
ConversionServiceExposingInterceptor . |
Copyright © 2015. All rights reserved.