Uses of Class
org.springframework.core.env.MutablePropertySources
Packages that use MutablePropertySources
Package
Description
Spring's environment abstraction consisting of bean definition
profile and hierarchical property source support.
-
Uses of MutablePropertySources in org.springframework.core.env
Methods in org.springframework.core.env that return MutablePropertySourcesModifier and TypeMethodDescriptionAbstractEnvironment.getPropertySources()ConfigurableEnvironment.getPropertySources()Return thePropertySourcesfor thisEnvironmentin mutable form, allowing for manipulation of the set ofPropertySourceobjects that should be searched when resolving properties against thisEnvironmentobject.Methods in org.springframework.core.env with parameters of type MutablePropertySourcesModifier and TypeMethodDescriptionprotected ConfigurablePropertyResolverAbstractEnvironment.createPropertyResolver(MutablePropertySources propertySources) Factory method used to create theConfigurablePropertyResolverused by thisEnvironment.protected voidAbstractEnvironment.customizePropertySources(MutablePropertySources propertySources) Customize the set ofPropertySourceobjects to be searched by thisEnvironmentduring calls toAbstractEnvironment.getProperty(String)and related methods.protected voidStandardEnvironment.customizePropertySources(MutablePropertySources propertySources) Customize the set of property sources with those appropriate for any standard Java environment: "systemProperties" "systemEnvironment"Constructors in org.springframework.core.env with parameters of type MutablePropertySourcesModifierConstructorDescriptionprotectedAbstractEnvironment(MutablePropertySources propertySources) Create a newEnvironmentinstance with a specificMutablePropertySourcesinstance, calling back toAbstractEnvironment.customizePropertySources(MutablePropertySources)during construction to allow subclasses to contribute or manipulatePropertySourceinstances as appropriate.protectedStandardEnvironment(MutablePropertySources propertySources) Create a newStandardEnvironmentinstance with a specificMutablePropertySourcesinstance.