public class

PropertySourcesPropertyResolver

extends AbstractPropertyResolver
java.lang.Object
   ↳ org.springframework.core.env.AbstractPropertyResolver
     ↳ org.springframework.core.env.PropertySourcesPropertyResolver

Class Overview

PropertyResolver implementation that resolves property values against an underlying set of PropertySources.

Summary

[Expand]
Inherited Fields
From class org.springframework.core.env.AbstractPropertyResolver
Public Constructors
PropertySourcesPropertyResolver(PropertySources propertySources)
Create a new resolver against the given property sources.
Public Methods
boolean containsProperty(String key)
<T> T getProperty(String key, Class<T> targetValueType)
String getProperty(String key)
[Expand]
Inherited Methods
From class org.springframework.core.env.AbstractPropertyResolver
From class java.lang.Object
From interface org.springframework.core.env.ConfigurablePropertyResolver
From interface org.springframework.core.env.PropertyResolver

Public Constructors

public PropertySourcesPropertyResolver (PropertySources propertySources)

Also: SpringCore

Create a new resolver against the given property sources.

Parameters
propertySources the set of PropertySource objects to use

Public Methods

public boolean containsProperty (String key)

Also: SpringCore

public T getProperty (String key, Class<T> targetValueType)

Also: SpringCore

public String getProperty (String key)

Also: SpringCore