public interface

ConfigurablePropertyResolver

implements PropertyResolver
org.springframework.core.env.ConfigurablePropertyResolver
Known Indirect Subclasses

Class Overview

Configuration interface to be implemented by most if not all PropertyResolvers. Provides facilities for accessing and customizing the ConversionService used when converting property values from one type to another.

Summary

Public Methods
abstract ConversionService getConversionService()
abstract void setConversionService(ConversionService conversionService)
Set the ConversionService to be used when performing type conversions on properties.
abstract void setPlaceholderPrefix(String placeholderPrefix)
abstract void setPlaceholderSuffix(String placeholderSuffix)
abstract void setValueSeparator(String valueSeparator)
[Expand]
Inherited Methods
From interface org.springframework.core.env.PropertyResolver

Public Methods

public abstract ConversionService getConversionService ()

Also: SpringCore

Returns

public abstract void setConversionService (ConversionService conversionService)

Also: SpringCore

Set the ConversionService to be used when performing type conversions on properties.

public abstract void setPlaceholderPrefix (String placeholderPrefix)

Also: SpringCore

public abstract void setPlaceholderSuffix (String placeholderSuffix)

Also: SpringCore

public abstract void setValueSeparator (String valueSeparator)

Also: SpringCore