Java org.springframework.core.io.support ResourcePropertySource fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.io.support ResourcePropertySource fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.io.support ResourcePropertySource.

The text is from its open source code.

Constructor

ResourcePropertySource(EncodedResource resource)
Create a PropertySource based on Properties loaded from the given resource.
ResourcePropertySource(Resource resource)
Create a PropertySource based on Properties loaded from the given resource.
ResourcePropertySource(String location)
Create a PropertySource based on Properties loaded from the given resource location.
ResourcePropertySource(String name, EncodedResource resource)
Create a PropertySource having the given name based on Properties loaded from the given encoded resource.
ResourcePropertySource(String name, Resource resource)
Create a PropertySource having the given name based on Properties loaded from the given encoded resource.
ResourcePropertySource(String location, ClassLoader classLoader)
Create a PropertySource based on Properties loaded from the given resource location and use the given class loader to load the resource, assuming it is prefixed with classpath: .
ResourcePropertySource(String name, String location)
Create a PropertySource having the given name based on Properties loaded from the given resource location.
ResourcePropertySource(String name, String location, ClassLoader classLoader)
Create a PropertySource having the given name based on Properties loaded from the given resource location and using the given class loader to load the resource (assuming it is prefixed with classpath: ).
ResourcePropertySource(String name, @Nullable String resourceName, Map source)