Package | Description |
---|---|
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.env |
Spring's environment abstraction consisting of bean definition
profile and hierarchical property source support.
|
org.springframework.web.context |
Contains a variant of the application context interface for web applications,
and the ContextLoaderListener that bootstraps a root web application context.
|
org.springframework.web.context.support |
Classes supporting the
org.springframework.web.context package,
such as WebApplicationContext implementations and various utility classes. |
Modifier and Type | Method and Description |
---|---|
protected 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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ConfigurableEnvironment
Configuration interface to be implemented by most if not all
Environment types. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractEnvironment
Abstract base class for
Environment implementations. |
class |
AbstractPropertyResolver
Abstract base class for resolving properties against any underlying source.
|
class |
PropertySourcesPropertyResolver
PropertyResolver implementation that resolves property values against
an underlying set of PropertySources . |
class |
StandardEnvironment
Environment implementation suitable for use in 'standard' (i.e. |
Modifier and Type | Interface and Description |
---|---|
interface |
ConfigurableWebEnvironment
Specialization of
ConfigurableEnvironment allowing initialization of
servlet-related PropertySource objects at the
earliest moment that the ServletContext and (optionally) ServletConfig
become available. |
Modifier and Type | Class and Description |
---|---|
class |
StandardServletEnvironment
Environment implementation to be used by Servlet -based web
applications. |
Copyright © 2021. All rights reserved.