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

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

Introduction

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

The text is from its open source code.

Method

voidfillProperties(Properties props, EncodedResource resource)
Fill the given properties from the given EncodedResource, potentially defining a specific encoding for the properties file.
voidfillProperties(Properties props, Resource resource)
Fill the given properties from the given resource (in ISO-8859-1 encoding).
voidfillProperties(Properties props, EncodedResource resource, PropertiesPersister persister)
Actually load properties from the given EncodedResource into the given Properties instance.
PropertiesloadAllProperties(String resourceName)
Load all properties from the specified class path resource (in ISO-8859-1 encoding), using the default class loader.
PropertiesloadAllProperties(String resourceName, @Nullable ClassLoader classLoader)
Load all properties from the specified class path resource (in ISO-8859-1 encoding), using the given class loader.
PropertiesloadProperties(EncodedResource resource)
Load properties from the given EncodedResource, potentially defining a specific encoding for the properties file.
PropertiesloadProperties(Resource resource)
Load properties from the given resource (in ISO-8859-1 encoding).