Class ResourceEditorRegistrar

java.lang.Object
org.springframework.beans.support.ResourceEditorRegistrar
All Implemented Interfaces:
PropertyEditorRegistrar

public class ResourceEditorRegistrar extends Object implements PropertyEditorRegistrar
PropertyEditorRegistrar implementation that populates a given PropertyEditorRegistry (typically a BeanWrapper used for bean creation within an org.springframework.context.ApplicationContext) with resource editors. Used by org.springframework.context.support.AbstractApplicationContext.
Since:
2.0
Author:
Juergen Hoeller, Chris Beams
  • Constructor Summary

    Constructors
    Constructor
    Description
    ResourceEditorRegistrar(org.springframework.core.io.ResourceLoader resourceLoader, org.springframework.core.env.PropertyResolver propertyResolver)
    Create a new ResourceEditorRegistrar for the given ResourceLoader and PropertyResolver.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Populate the given registry with the following resource editors: ResourceEditor, InputStreamEditor, InputSourceEditor, FileEditor, URLEditor, URIEditor, ClassEditor, ClassArrayEditor.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ResourceEditorRegistrar

      public ResourceEditorRegistrar(org.springframework.core.io.ResourceLoader resourceLoader, org.springframework.core.env.PropertyResolver propertyResolver)
      Create a new ResourceEditorRegistrar for the given ResourceLoader and PropertyResolver.
      Parameters:
      resourceLoader - the ResourceLoader (or ResourcePatternResolver) to create editors for (usually an ApplicationContext)
      propertyResolver - the PropertyResolver (usually an Environment)
      See Also:
      • Environment
      • ResourcePatternResolver
      • org.springframework.context.ApplicationContext
  • Method Details