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

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

Introduction

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

The text is from its open source code.

Method

TgetProperty(String key, Class targetType, T defaultValue)
Return the property value associated with the given key, or defaultValue if the key cannot be resolved.
StringgetProperty(String key, String defaultValue)
Return the property value associated with the given key, or defaultValue if the key cannot be resolved.
TgetProperty(String key, Class targetType)
Return the property value associated with the given key, or null if the key cannot be resolved.
StringgetProperty(String key)
Return the property value associated with the given key, or null if the key cannot be resolved.
StringresolvePlaceholders(String text)
Resolve ${...} placeholders in the given text, replacing them with corresponding property values as resolved by #getProperty .