interface EmbeddedValueResolverAware : Aware
Interface to be implemented by any object that wishes to be notified of a StringValueResolver for the resolution of embedded definition values.
This is an alternative to a full ConfigurableBeanFactory dependency via the ApplicationContextAware/BeanFactoryAware interfaces.
Author
Juergen Hoeller
Author
Chris Beams
Since
3.0.3
See Also
org.springframework.beans.factory.config.ConfigurableBeanFactory#resolveEmbeddedValue(String)org.springframework.beans.factory.config.ConfigurableBeanFactory#getBeanExpressionResolver()org.springframework.beans.factory.config.EmbeddedValueResolver
abstract fun setEmbeddedValueResolver(resolver: StringValueResolver): Unit
Set the StringValueResolver to use for resolving embedded definition values. |
open class EmbeddedValueResolutionSupport : EmbeddedValueResolverAware
Convenient base class for components with a need for embedded value resolution (i.e. org.springframework.context.EmbeddedValueResolverAware consumers). |
|
open class FormattingConversionService : GenericConversionService, FormatterRegistry, EmbeddedValueResolverAware
A org.springframework.core.convert.ConversionService implementation designed to be configured as a FormatterRegistry. |
|
open class FormattingConversionServiceFactoryBean : FactoryBean<FormattingConversionService>, EmbeddedValueResolverAware, InitializingBean
A factory providing convenient access to a Additional converters and formatters can be registered declaratively through A good example for registering converters and formatters in code is Like all |