public class ResourcePropertySource extends PropertiesPropertySource
PropertiesPropertySource that loads a Properties
object from a given Resource or resource location such as
"classpath:/com/myco/foo.properties" or "file:/path/to/file.xml".
Both traditional and XML-based properties file formats are supported, however in order
for XML processing to take effect, the underlying Resource's
getFilename() method must
return non-null and end in ".xml".PropertySource.StubPropertySourceEMPTY_NAMES_ARRAY, loggername, source| Constructor and Description |
|---|
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 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,
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 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:). |
getProperty, getPropertyNamescontainsPropertypublic ResourcePropertySource(String name, EncodedResource resource) throws IOException
IOExceptionpublic ResourcePropertySource(EncodedResource resource) throws IOException
description of the given resource.IOExceptionpublic ResourcePropertySource(String name, Resource resource) throws IOException
IOExceptionpublic ResourcePropertySource(Resource resource) throws IOException
description of the given resource.IOExceptionpublic ResourcePropertySource(String name, String location, ClassLoader classLoader) throws IOException
classpath:).IOExceptionpublic ResourcePropertySource(String location, ClassLoader classLoader) throws IOException
classpath:. The name of the PropertySource will be
generated based on the description of the
resource.IOExceptionpublic ResourcePropertySource(String name, String location) throws IOException
classpath:.IOExceptionpublic ResourcePropertySource(String location) throws IOException
description of the resource.IOException