Class AbstractEnvironment
- java.lang.Object
- org.springframework.core.env.AbstractEnvironment
 
- All Implemented Interfaces:
- ConfigurableEnvironment,- ConfigurablePropertyResolver,- Environment,- PropertyResolver
 - Direct Known Subclasses:
- MockEnvironment,- StandardEnvironment
 - public abstract class AbstractEnvironment extends Object implements ConfigurableEnvironment Abstract base class for- Environmentimplementations. Supports the notion of reserved default profile names and enables specifying active and default profiles through the- ACTIVE_PROFILES_PROPERTY_NAMEand- DEFAULT_PROFILES_PROPERTY_NAMEproperties.- Concrete subclasses differ primarily on which - PropertySourceobjects they add by default.- AbstractEnvironmentadds none. Subclasses should contribute property sources through the protected- customizePropertySources(MutablePropertySources)hook, while clients should customize using- ConfigurableEnvironment.getPropertySources()and working against the- MutablePropertySourcesAPI. See- ConfigurableEnvironmentjavadoc for usage examples.- Since:
- 3.1
- Author:
- Chris Beams, Juergen Hoeller
- See Also:
- ConfigurableEnvironment,- StandardEnvironment
 
- Field Summary- Fields - Modifier and Type - Field - Description - static String- ACTIVE_PROFILES_PROPERTY_NAMEName of property to set to specify active profiles: "spring.profiles.active".- static String- DEFAULT_PROFILES_PROPERTY_NAMEName of property to set to specify profiles active by default: "spring.profiles.default".- static String- IGNORE_GETENV_PROPERTY_NAMESystem property that instructs Spring to ignore system environment variables, i.e.- protected Log- logger- protected static String- RESERVED_DEFAULT_PROFILE_NAMEName of reserved default profile name: "default".
 - Constructor Summary- Constructors - Constructor - Description - AbstractEnvironment()Create a new- Environmentinstance, calling back to- customizePropertySources(MutablePropertySources)during construction to allow subclasses to contribute or manipulate- PropertySourceinstances as appropriate.
 - Method Summary- All Methods Instance Methods Concrete Methods Deprecated Methods - Modifier and Type - Method - Description - boolean- acceptsProfiles(String... profiles)Deprecated.- boolean- acceptsProfiles(Profiles profiles)Return whether the active profiles match the given- Profilespredicate.- void- addActiveProfile(String profile)Add a profile to the current set of active profiles.- boolean- containsProperty(String key)Return whether the given property key is available for resolution, i.e.- protected void- customizePropertySources(MutablePropertySources propertySources)Customize the set of- PropertySourceobjects to be searched by this- Environmentduring calls to- getProperty(String)and related methods.- protected Set<String>- doGetActiveProfiles()Return the set of active profiles as explicitly set through- setActiveProfiles(java.lang.String...)or if the current set of active profiles is empty, check for the presence of the "spring.profiles.active" property and assign its value to the set of active profiles.- protected Set<String>- doGetDefaultProfiles()Return the set of default profiles explicitly set via- setDefaultProfiles(String...)or if the current set of default profiles consists only of reserved default profiles, then check for the presence of the "spring.profiles.default" property and assign its value (if any) to the set of default profiles.- String[]- getActiveProfiles()Return the set of profiles explicitly made active for this environment.- ConfigurableConversionService- getConversionService()Return the- ConfigurableConversionServiceused when performing type conversions on properties.- String[]- getDefaultProfiles()Return the set of profiles to be active by default when no active profiles have been set explicitly.- String- getProperty(String key)Return the property value associated with the given key, or- nullif the key cannot be resolved.- <T> T- getProperty(String key, Class<T> targetType)Return the property value associated with the given key, or- nullif the key cannot be resolved.- <T> T- getProperty(String key, Class<T> targetType, T defaultValue)Return the property value associated with the given key, or- defaultValueif the key cannot be resolved.- String- getProperty(String key, String defaultValue)Return the property value associated with the given key, or- defaultValueif the key cannot be resolved.- MutablePropertySources- getPropertySources()Return the- PropertySourcesfor this- Environmentin mutable form, allowing for manipulation of the set of- PropertySourceobjects that should be searched when resolving properties against this- Environmentobject.- String- getRequiredProperty(String key)Return the property value associated with the given key (never- null).- <T> T- getRequiredProperty(String key, Class<T> targetType)Return the property value associated with the given key, converted to the given targetType (never- null).- protected Set<String>- getReservedDefaultProfiles()Return the set of reserved default profile names.- Map<String,Object>- getSystemEnvironment()Return the value of- System.getenv()if allowed by the current- SecurityManager, otherwise return a map implementation that will attempt to access individual keys using calls to- System.getenv(String).- Map<String,Object>- getSystemProperties()Return the value of- System.getProperties()if allowed by the current- SecurityManager, otherwise return a map implementation that will attempt to access individual keys using calls to- System.getProperty(String).- protected boolean- isProfileActive(String profile)Return whether the given profile is active, or if active profiles are empty whether the profile should be active by default.- void- merge(ConfigurableEnvironment parent)Append the given parent environment's active profiles, default profiles and property sources to this (child) environment's respective collections of each.- String- resolvePlaceholders(String text)Resolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by- PropertyResolver.getProperty(java.lang.String).- String- resolveRequiredPlaceholders(String text)Resolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by- PropertyResolver.getProperty(java.lang.String).- void- setActiveProfiles(String... profiles)Specify the set of profiles active for this- Environment.- void- setConversionService(ConfigurableConversionService conversionService)Set the- ConfigurableConversionServiceto be used when performing type conversions on properties.- void- setDefaultProfiles(String... profiles)Specify the set of profiles to be made active by default if no other profiles are explicitly made active through- setActiveProfiles(java.lang.String...).- void- setIgnoreUnresolvableNestedPlaceholders(boolean ignoreUnresolvableNestedPlaceholders)Set whether to throw an exception when encountering an unresolvable placeholder nested within the value of a given property.- void- setPlaceholderPrefix(String placeholderPrefix)Set the prefix that placeholders replaced by this resolver must begin with.- void- setPlaceholderSuffix(String placeholderSuffix)Set the suffix that placeholders replaced by this resolver must end with.- void- setRequiredProperties(String... requiredProperties)Specify which properties must be present, to be verified by- ConfigurablePropertyResolver.validateRequiredProperties().- void- setValueSeparator(String valueSeparator)Specify the separating character between the placeholders replaced by this resolver and their associated default value, or- nullif no such special character should be processed as a value separator.- protected boolean- suppressGetenvAccess()Determine whether to suppress- System.getenv()/- System.getenv(String)access for the purposes of- getSystemEnvironment().- String- toString()- protected void- validateProfile(String profile)Validate the given profile, called internally prior to adding to the set of active or default profiles.- void- validateRequiredProperties()Validate that each of the properties specified by- ConfigurablePropertyResolver.setRequiredProperties(java.lang.String...)is present and resolves to a non-- nullvalue.
 
- Field Detail- IGNORE_GETENV_PROPERTY_NAME- public static final String IGNORE_GETENV_PROPERTY_NAME System property that instructs Spring to ignore system environment variables, i.e. to never attempt to retrieve such a variable via- System.getenv().- The default is "false", falling back to system environment variable checks if a Spring environment property (e.g. a placeholder in a configuration String) isn't resolvable otherwise. Consider switching this flag to "true" if you experience log warnings from - getenvcalls coming from Spring, e.g. on WebSphere with strict SecurityManager settings and AccessControlExceptions warnings.- See Also:
- suppressGetenvAccess(), Constant Field Values
 
 - ACTIVE_PROFILES_PROPERTY_NAME- public static final String ACTIVE_PROFILES_PROPERTY_NAME Name of property to set to specify active profiles: "spring.profiles.active". Value may be comma delimited.- Note that certain shell environments such as Bash disallow the use of the period character in variable names. Assuming that Spring's - SystemEnvironmentPropertySourceis in use, this property may be specified as an environment variable as- SPRING_PROFILES_ACTIVE.
 - DEFAULT_PROFILES_PROPERTY_NAME- public static final String DEFAULT_PROFILES_PROPERTY_NAME Name of property to set to specify profiles active by default: "spring.profiles.default". Value may be comma delimited.- Note that certain shell environments such as Bash disallow the use of the period character in variable names. Assuming that Spring's - SystemEnvironmentPropertySourceis in use, this property may be specified as an environment variable as- SPRING_PROFILES_DEFAULT.
 - RESERVED_DEFAULT_PROFILE_NAME- protected static final String RESERVED_DEFAULT_PROFILE_NAME Name of reserved default profile name: "default". If no default profile names are explicitly and no active profile names are explicitly set, this profile will automatically be activated by default.
 
 - Constructor Detail- AbstractEnvironment- public AbstractEnvironment() Create a new- Environmentinstance, calling back to- customizePropertySources(MutablePropertySources)during construction to allow subclasses to contribute or manipulate- PropertySourceinstances as appropriate.
 
 - Method Detail- customizePropertySources- protected void customizePropertySources(MutablePropertySources propertySources) Customize the set of- PropertySourceobjects to be searched by this- Environmentduring calls to- getProperty(String)and related methods.- Subclasses that override this method are encouraged to add property sources using - MutablePropertySources.addLast(PropertySource)such that further subclasses may call- super.customizePropertySources()with predictable results. For example:- public class Level1Environment extends AbstractEnvironment { @Override protected void customizePropertySources(MutablePropertySources propertySources) { super.customizePropertySources(propertySources); // no-op from base class propertySources.addLast(new PropertySourceA(...)); propertySources.addLast(new PropertySourceB(...)); } } public class Level2Environment extends Level1Environment { @Override protected void customizePropertySources(MutablePropertySources propertySources) { super.customizePropertySources(propertySources); // add all from superclass propertySources.addLast(new PropertySourceC(...)); propertySources.addLast(new PropertySourceD(...)); } }In this arrangement, properties will be resolved against sources A, B, C, D in that order. That is to say that property source "A" has precedence over property source "D". If the- Level2Environmentsubclass wished to give property sources C and D higher precedence than A and B, it could simply call- super.customizePropertySourcesafter, rather than before adding its own:- public class Level2Environment extends Level1Environment { @Override protected void customizePropertySources(MutablePropertySources propertySources) { propertySources.addLast(new PropertySourceC(...)); propertySources.addLast(new PropertySourceD(...)); super.customizePropertySources(propertySources); // add all from superclass } }The search order is now C, D, A, B as desired.- Beyond these recommendations, subclasses may use any of the - add*,- remove, or- replacemethods exposed by- MutablePropertySourcesin order to create the exact arrangement of property sources desired.- The base implementation registers no property sources. - Note that clients of any - ConfigurableEnvironmentmay further customize property sources via the- getPropertySources()accessor, typically within an- ApplicationContextInitializer. For example:- ConfigurableEnvironment env = new StandardEnvironment(); env.getPropertySources().addLast(new PropertySourceX(...)); - A warning about instance variable accessInstance variables declared in subclasses and having default initial values should not be accessed from within this method. Due to Java object creation lifecycle constraints, any initial value will not yet be assigned when this callback is invoked by the- AbstractEnvironment()constructor, which may lead to a- NullPointerExceptionor other problems. If you need to access default values of instance variables, leave this method as a no-op and perform property source manipulation and instance variable access directly within the subclass constructor. Note that assigning values to instance variables is not problematic; it is only attempting to read default values that must be avoided.
 - getReservedDefaultProfiles- protected Set<String> getReservedDefaultProfiles() Return the set of reserved default profile names. This implementation returns "default". Subclasses may override in order to customize the set of reserved names.
 - getActiveProfiles- public String[] getActiveProfiles() Description copied from interface:- EnvironmentReturn the set of profiles explicitly made active for this environment. Profiles are used for creating logical groupings of bean definitions to be registered conditionally, for example based on deployment environment. Profiles can be activated by setting "spring.profiles.active" as a system property or by calling- ConfigurableEnvironment.setActiveProfiles(String...).- If no profiles have explicitly been specified as active, then any default profiles will automatically be activated. - Specified by:
- getActiveProfilesin interface- Environment
- See Also:
- Environment.getDefaultProfiles(),- ConfigurableEnvironment.setActiveProfiles(java.lang.String...),- ACTIVE_PROFILES_PROPERTY_NAME
 
 - doGetActiveProfiles- protected Set<String> doGetActiveProfiles() Return the set of active profiles as explicitly set through- setActiveProfiles(java.lang.String...)or if the current set of active profiles is empty, check for the presence of the "spring.profiles.active" property and assign its value to the set of active profiles.
 - setActiveProfiles- public void setActiveProfiles(String... profiles) Description copied from interface:- ConfigurableEnvironmentSpecify the set of profiles active for this- Environment. Profiles are evaluated during container bootstrap to determine whether bean definitions should be registered with the container.- Any existing active profiles will be replaced with the given arguments; call with zero arguments to clear the current set of active profiles. Use - ConfigurableEnvironment.addActiveProfile(java.lang.String)to add a profile while preserving the existing set.
 - addActiveProfile- public void addActiveProfile(String profile) Description copied from interface:- ConfigurableEnvironmentAdd a profile to the current set of active profiles.- Specified by:
- addActiveProfilein interface- ConfigurableEnvironment
- See Also:
- ConfigurableEnvironment.setActiveProfiles(java.lang.String...)
 
 - getDefaultProfiles- public String[] getDefaultProfiles() Description copied from interface:- EnvironmentReturn the set of profiles to be active by default when no active profiles have been set explicitly.- Specified by:
- getDefaultProfilesin interface- Environment
- See Also:
- Environment.getActiveProfiles(),- ConfigurableEnvironment.setDefaultProfiles(java.lang.String...),- DEFAULT_PROFILES_PROPERTY_NAME
 
 - doGetDefaultProfiles- protected Set<String> doGetDefaultProfiles() Return the set of default profiles explicitly set via- setDefaultProfiles(String...)or if the current set of default profiles consists only of reserved default profiles, then check for the presence of the "spring.profiles.default" property and assign its value (if any) to the set of default profiles.
 - setDefaultProfiles- public void setDefaultProfiles(String... profiles) Specify the set of profiles to be made active by default if no other profiles are explicitly made active through- setActiveProfiles(java.lang.String...).- Calling this method removes overrides any reserved default profiles that may have been added during construction of the environment. - Specified by:
- setDefaultProfilesin interface- ConfigurableEnvironment
- See Also:
- AbstractEnvironment(),- getReservedDefaultProfiles()
 
 - acceptsProfiles- @Deprecated public boolean acceptsProfiles(String... profiles) Deprecated.Description copied from interface:- EnvironmentReturn whether one or more of the given profiles is active or, in the case of no explicit active profiles, whether one or more of the given profiles is included in the set of default profiles. If a profile begins with '!' the logic is inverted, i.e. the method will return- trueif the given profile is not active. For example,- env.acceptsProfiles("p1", "!p2")will return- trueif profile 'p1' is active or 'p2' is not active.- Specified by:
- acceptsProfilesin interface- Environment
- See Also:
- Environment.getActiveProfiles(),- Environment.getDefaultProfiles(),- Environment.acceptsProfiles(Profiles)
 
 - acceptsProfiles- public boolean acceptsProfiles(Profiles profiles) Description copied from interface:- EnvironmentReturn whether the active profiles match the given- Profilespredicate.- Specified by:
- acceptsProfilesin interface- Environment
 
 - isProfileActive- protected boolean isProfileActive(String profile) Return whether the given profile is active, or if active profiles are empty whether the profile should be active by default.- Throws:
- IllegalArgumentException- per- validateProfile(String)
 
 - validateProfile- protected void validateProfile(String profile) Validate the given profile, called internally prior to adding to the set of active or default profiles.- Subclasses may override to impose further restrictions on profile syntax. - Throws:
- IllegalArgumentException- if the profile is null, empty, whitespace-only or begins with the profile NOT operator (!).
- See Also:
- acceptsProfiles(java.lang.String...),- addActiveProfile(java.lang.String),- setDefaultProfiles(java.lang.String...)
 
 - getPropertySources- public MutablePropertySources getPropertySources() Description copied from interface:- ConfigurableEnvironmentReturn the- PropertySourcesfor this- Environmentin mutable form, allowing for manipulation of the set of- PropertySourceobjects that should be searched when resolving properties against this- Environmentobject. The various- MutablePropertySourcesmethods such as- addFirst,- addLast,- addBeforeand- addAfterallow for fine-grained control over property source ordering. This is useful, for example, in ensuring that certain user-defined property sources have search precedence over default property sources such as the set of system properties or the set of system environment variables.- Specified by:
- getPropertySourcesin interface- ConfigurableEnvironment
- See Also:
- customizePropertySources(org.springframework.core.env.MutablePropertySources)
 
 - getSystemProperties- public Map<String,Object> getSystemProperties() Description copied from interface:- ConfigurableEnvironmentReturn the value of- System.getProperties()if allowed by the current- SecurityManager, otherwise return a map implementation that will attempt to access individual keys using calls to- System.getProperty(String).- Note that most - Environmentimplementations will include this system properties map as a default- PropertySourceto be searched. Therefore, it is recommended that this method not be used directly unless bypassing other property sources is expressly intended.- Calls to - Map.get(Object)on the Map returned will never throw- IllegalAccessException; in cases where the SecurityManager forbids access to a property,- nullwill be returned and an INFO-level log message will be issued noting the exception.- Specified by:
- getSystemPropertiesin interface- ConfigurableEnvironment
 
 - getSystemEnvironment- public Map<String,Object> getSystemEnvironment() Description copied from interface:- ConfigurableEnvironmentReturn the value of- System.getenv()if allowed by the current- SecurityManager, otherwise return a map implementation that will attempt to access individual keys using calls to- System.getenv(String).- Note that most - Environmentimplementations will include this system environment map as a default- PropertySourceto be searched. Therefore, it is recommended that this method not be used directly unless bypassing other property sources is expressly intended.- Calls to - Map.get(Object)on the Map returned will never throw- IllegalAccessException; in cases where the SecurityManager forbids access to a property,- nullwill be returned and an INFO-level log message will be issued noting the exception.- Specified by:
- getSystemEnvironmentin interface- ConfigurableEnvironment
 
 - suppressGetenvAccess- protected boolean suppressGetenvAccess() Determine whether to suppress- System.getenv()/- System.getenv(String)access for the purposes of- getSystemEnvironment().- If this method returns - true, an empty dummy Map will be used instead of the regular system environment Map, never even trying to call- getenvand therefore avoiding security manager warnings (if any).- The default implementation checks for the "spring.getenv.ignore" system property, returning - trueif its value equals "true" in any case.
 - merge- public void merge(ConfigurableEnvironment parent) Description copied from interface:- ConfigurableEnvironmentAppend the given parent environment's active profiles, default profiles and property sources to this (child) environment's respective collections of each.- For any identically-named - PropertySourceinstance existing in both parent and child, the child instance is to be preserved and the parent instance discarded. This has the effect of allowing overriding of property sources by the child as well as avoiding redundant searches through common property source types, e.g. system environment and system properties.- Active and default profile names are also filtered for duplicates, to avoid confusion and redundant storage. - The parent environment remains unmodified in any case. Note that any changes to the parent environment occurring after the call to - mergewill not be reflected in the child. Therefore, care should be taken to configure parent property sources and profile information prior to calling- merge.- Specified by:
- mergein interface- ConfigurableEnvironment
- Parameters:
- parent- the environment to merge with
- See Also:
- AbstractApplicationContext.setParent(org.springframework.context.ApplicationContext)
 
 - getConversionService- public ConfigurableConversionService getConversionService() Description copied from interface:- ConfigurablePropertyResolverReturn the- ConfigurableConversionServiceused when performing type conversions on properties.- The configurable nature of the returned conversion service allows for the convenient addition and removal of individual - Converterinstances:- ConfigurableConversionService cs = env.getConversionService(); cs.addConverter(new FooConverter()); 
 - setConversionService- public void setConversionService(ConfigurableConversionService conversionService) Description copied from interface:- ConfigurablePropertyResolverSet the- ConfigurableConversionServiceto be used when performing type conversions on properties.- Note: as an alternative to fully replacing the - ConversionService, consider adding or removing individual- Converterinstances by drilling into- ConfigurablePropertyResolver.getConversionService()and calling methods such as- #addConverter.
 - setPlaceholderPrefix- public void setPlaceholderPrefix(String placeholderPrefix) Description copied from interface:- ConfigurablePropertyResolverSet the prefix that placeholders replaced by this resolver must begin with.- Specified by:
- setPlaceholderPrefixin interface- ConfigurablePropertyResolver
 
 - setPlaceholderSuffix- public void setPlaceholderSuffix(String placeholderSuffix) Description copied from interface:- ConfigurablePropertyResolverSet the suffix that placeholders replaced by this resolver must end with.- Specified by:
- setPlaceholderSuffixin interface- ConfigurablePropertyResolver
 
 - setValueSeparator- public void setValueSeparator(@Nullable String valueSeparator) Description copied from interface:- ConfigurablePropertyResolverSpecify the separating character between the placeholders replaced by this resolver and their associated default value, or- nullif no such special character should be processed as a value separator.- Specified by:
- setValueSeparatorin interface- ConfigurablePropertyResolver
 
 - setIgnoreUnresolvableNestedPlaceholders- public void setIgnoreUnresolvableNestedPlaceholders(boolean ignoreUnresolvableNestedPlaceholders) Description copied from interface:- ConfigurablePropertyResolverSet whether to throw an exception when encountering an unresolvable placeholder nested within the value of a given property. A- falsevalue indicates strict resolution, i.e. that an exception will be thrown. A- truevalue indicates that unresolvable nested placeholders should be passed through in their unresolved ${...} form.- Implementations of - PropertyResolver.getProperty(String)and its variants must inspect the value set here to determine correct behavior when property values contain unresolvable placeholders.- Specified by:
- setIgnoreUnresolvableNestedPlaceholdersin interface- ConfigurablePropertyResolver
 
 - setRequiredProperties- public void setRequiredProperties(String... requiredProperties) Description copied from interface:- ConfigurablePropertyResolverSpecify which properties must be present, to be verified by- ConfigurablePropertyResolver.validateRequiredProperties().- Specified by:
- setRequiredPropertiesin interface- ConfigurablePropertyResolver
 
 - validateRequiredProperties- public void validateRequiredProperties() throws MissingRequiredPropertiesException Description copied from interface:- ConfigurablePropertyResolverValidate that each of the properties specified by- ConfigurablePropertyResolver.setRequiredProperties(java.lang.String...)is present and resolves to a non-- nullvalue.- Specified by:
- validateRequiredPropertiesin interface- ConfigurablePropertyResolver
- Throws:
- MissingRequiredPropertiesException- if any of the required properties are not resolvable.
 
 - containsProperty- public boolean containsProperty(String key) Description copied from interface:- PropertyResolverReturn whether the given property key is available for resolution, i.e. if the value for the given key is not- null.- Specified by:
- containsPropertyin interface- PropertyResolver
 
 - getProperty- @Nullable public String getProperty(String key) Description copied from interface:- PropertyResolverReturn the property value associated with the given key, or- nullif the key cannot be resolved.- Specified by:
- getPropertyin interface- PropertyResolver
- Parameters:
- key- the property name to resolve
- See Also:
- PropertyResolver.getProperty(String, String),- PropertyResolver.getProperty(String, Class),- PropertyResolver.getRequiredProperty(String)
 
 - getProperty- public String getProperty(String key, String defaultValue) Description copied from interface:- PropertyResolverReturn the property value associated with the given key, or- defaultValueif the key cannot be resolved.- Specified by:
- getPropertyin interface- PropertyResolver
- Parameters:
- key- the property name to resolve
- defaultValue- the default value to return if no value is found
- See Also:
- PropertyResolver.getRequiredProperty(String),- PropertyResolver.getProperty(String, Class)
 
 - getProperty- @Nullable public <T> T getProperty(String key, Class<T> targetType) Description copied from interface:- PropertyResolverReturn the property value associated with the given key, or- nullif the key cannot be resolved.- Specified by:
- getPropertyin interface- PropertyResolver
- Parameters:
- key- the property name to resolve
- targetType- the expected type of the property value
- See Also:
- PropertyResolver.getRequiredProperty(String, Class)
 
 - getProperty- public <T> T getProperty(String key, Class<T> targetType, T defaultValue) Description copied from interface:- PropertyResolverReturn the property value associated with the given key, or- defaultValueif the key cannot be resolved.- Specified by:
- getPropertyin interface- PropertyResolver
- Parameters:
- key- the property name to resolve
- targetType- the expected type of the property value
- defaultValue- the default value to return if no value is found
- See Also:
- PropertyResolver.getRequiredProperty(String, Class)
 
 - getRequiredProperty- public String getRequiredProperty(String key) throws IllegalStateException Description copied from interface:- PropertyResolverReturn the property value associated with the given key (never- null).- Specified by:
- getRequiredPropertyin interface- PropertyResolver
- Throws:
- IllegalStateException- if the key cannot be resolved
- See Also:
- PropertyResolver.getRequiredProperty(String, Class)
 
 - getRequiredProperty- public <T> T getRequiredProperty(String key, Class<T> targetType) throws IllegalStateException Description copied from interface:- PropertyResolverReturn the property value associated with the given key, converted to the given targetType (never- null).- Specified by:
- getRequiredPropertyin interface- PropertyResolver
- Throws:
- IllegalStateException- if the given key cannot be resolved
 
 - resolvePlaceholders- public String resolvePlaceholders(String text) Description copied from interface:- PropertyResolverResolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by- PropertyResolver.getProperty(java.lang.String). Unresolvable placeholders with no default value are ignored and passed through unchanged.- Specified by:
- resolvePlaceholdersin interface- PropertyResolver
- Parameters:
- text- the String to resolve
- Returns:
- the resolved String (never null)
- See Also:
- PropertyResolver.resolveRequiredPlaceholders(java.lang.String)
 
 - resolveRequiredPlaceholders- public String resolveRequiredPlaceholders(String text) throws IllegalArgumentException Description copied from interface:- PropertyResolverResolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by- PropertyResolver.getProperty(java.lang.String). Unresolvable placeholders with no default value will cause an IllegalArgumentException to be thrown.- Specified by:
- resolveRequiredPlaceholdersin interface- PropertyResolver
- Returns:
- the resolved String (never null)
- Throws:
- IllegalArgumentException- if given text is- nullor if any placeholders are unresolvable