Java org.springframework.util PropertyPlaceholderHelper fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util PropertyPlaceholderHelper fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util PropertyPlaceholderHelper.

The text is from its open source code.

Constructor

PropertyPlaceholderHelper(String placeholderPrefix, String placeholderSuffix, @Nullable String valueSeparator, boolean ignoreUnresolvablePlaceholders)
Creates a new PropertyPlaceholderHelper that uses the supplied prefix and suffix.
PropertyPlaceholderHelper(String placeholderPrefix, String placeholderSuffix)
Creates a new PropertyPlaceholderHelper that uses the supplied prefix and suffix.

Method

StringreplacePlaceholders(String value, final Properties properties)
Replaces all placeholders of format ${name}} with the corresponding property from the supplied Properties .
StringreplacePlaceholders(String value, PlaceholderResolver placeholderResolver)
Replaces all placeholders of format ${name}} with the value returned from the supplied PlaceholderResolver .