Uses of Interface
org.springframework.core.env.ConfigurablePropertyResolver
Package
Description
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Spring's environment abstraction consisting of bean definition
profile and hierarchical property source support.
This package contains mock implementations of the
Environment
and
PropertySource
abstractions introduced in Spring 3.1.Contains a variant of the application context interface for web applications,
and the ContextLoaderListener that bootstraps a root web application context.
Classes supporting the
org.springframework.web.context
package,
such as WebApplicationContext implementations and various utility classes.-
Uses of ConfigurablePropertyResolver in org.springframework.context.support
Modifier and TypeMethodDescriptionprotected void
PropertySourcesPlaceholderConfigurer.processProperties
(ConfigurableListableBeanFactory beanFactoryToProcess, ConfigurablePropertyResolver propertyResolver) Visit each bean definition in the given bean factory and attempt to replace ${...} property placeholders with values from the given properties. -
Uses of ConfigurablePropertyResolver in org.springframework.core.env
Modifier and TypeInterfaceDescriptioninterface
Configuration interface to be implemented by most if not allEnvironment
types.Modifier and TypeClassDescriptionclass
Abstract base class forEnvironment
implementations.class
Abstract base class for resolving properties against any underlying source.class
PropertyResolver
implementation that resolves property values against an underlying set ofPropertySources
.class
Environment
implementation suitable for use in 'standard' (i.e.Modifier and TypeMethodDescriptionprotected ConfigurablePropertyResolver
AbstractEnvironment.createPropertyResolver
(MutablePropertySources propertySources) Factory method used to create theConfigurablePropertyResolver
instance used by the Environment.protected final ConfigurablePropertyResolver
AbstractEnvironment.getPropertyResolver()
Return theConfigurablePropertyResolver
being used by theEnvironment
. -
Uses of ConfigurablePropertyResolver in org.springframework.mock.env
Modifier and TypeClassDescriptionclass
SimpleConfigurableEnvironment
implementation exposingMockEnvironment.setProperty(String, String)
andMockEnvironment.withProperty(String, String)
methods for testing purposes. -
Uses of ConfigurablePropertyResolver in org.springframework.web.context
Modifier and TypeInterfaceDescriptioninterface
Specialization ofConfigurableEnvironment
allowing initialization of servlet-relatedPropertySource
objects at the earliest moment that theServletContext
and (optionally)ServletConfig
become available. -
Uses of ConfigurablePropertyResolver in org.springframework.web.context.support
Modifier and TypeClassDescriptionclass
Environment
implementation to be used byServlet
-based web applications.