org.springframework.core.env
Class CompositePropertySource
java.lang.Object
org.springframework.core.env.PropertySource<Object>
org.springframework.core.env.CompositePropertySource
public class CompositePropertySource
- extends PropertySource<Object>
Composite PropertySource
implementation that iterates over a set of
PropertySource
instances. Necessary in cases where multiple property sources
share the same name, e.g. when multiple values are supplied to @PropertySource
.
- Since:
- 3.1.1
- Author:
- Chris Beams
CompositePropertySource
public CompositePropertySource(String name)
- Create a new
CompositePropertySource
.
- Parameters:
name
- the name of the property source
getProperty
public Object getProperty(String name)
- Description copied from class:
PropertySource
- Return the value associated with the given name,
null
if not found.
- Specified by:
getProperty
in class PropertySource<Object>
- Parameters:
name
- the property to find- See Also:
PropertyResolver.getRequiredProperty(String)
addPropertySource
public void addPropertySource(PropertySource<?> propertySource)
toString
public String toString()
- Description copied from class:
PropertySource
- Produce concise output (type and name) if the current log level does not include
debug. If debug is enabled, produce verbose output including hashcode of the
PropertySource instance and every name/value property pair.
This variable verbosity is useful as a property source such as system properties
or environment variables may contain an arbitrary number of property pairs,
potentially leading to difficult to read exception and log messages.
- Overrides:
toString
in class PropertySource<Object>
- See Also:
Log.isDebugEnabled()