Java org.springframework.core.env ConfigurablePropertyResolver fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.env ConfigurablePropertyResolver fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.env ConfigurablePropertyResolver.

The text is from its open source code.

Implementation

org.springframework.core.env.ConfigurablePropertyResolver has the following implementations.
Click this link to see all its implementation.

Method

StringresolvePlaceholders(String text)
Resolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by #getProperty .
StringresolveRequiredPlaceholders(String text)
Resolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by #getProperty .
voidsetPlaceholderPrefix(String placeholderPrefix)
Set the prefix that placeholders replaced by this resolver must begin with.
voidsetPlaceholderSuffix(String placeholderSuffix)
Set the suffix that placeholders replaced by this resolver must end with.
voidsetValueSeparator(@Nullable String valueSeparator)
Specify the separating character between the placeholders replaced by this resolver and their associated default value, or null if no such special character should be processed as a value separator.