Example usage for org.springframework.core.io.support PropertiesLoaderSupport subclass-usage

List of usage examples for org.springframework.core.io.support PropertiesLoaderSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.core.io.support PropertiesLoaderSupport subclass-usage.

Usage

From source file org.vbossica.springbox.jmx.PropertyCanonicalNameResolver.java

/**
 * Specific {@link CanonicalNameResolver} that loads the mappings from a property file. The configuration is similar to
 * the one of the {@link PropertiesLoaderSupport} class, meaning that the {@link PropertiesLoaderSupport#setLocations(org.springframework.core.io.Resource[])}
 * should be used to specify the files containing the mappings.<p>
 *
 * <b>Usage:</b><p>

From source file org.impalaframework.spring.config.DynamicPropertiesFactoryBean.java

/**
 * Factory bean for dynamically modifiable {@link Properties} instance, loaded from a {@link Resource} location.
 * Holds an instance of {@link LocationModificationStateHolder}, which is used each time {@link #getObject()}
 * is called to determine whether the {@link Properties} should be reloaded.
 * 
 * The actual mechanism for property loading is delegated to the {@link PropertiesLoaderSupport} superclass.

From source file org.jasypt.spring31.xml.encryption.EncryptablePropertiesFactoryBean.java

/**
 * <p>
 *   Factory bean for creating encrptable properties objects from the <tt>encryption</tt> namespace
 *   elements. <strong>Do not use directly</strong>.
 * </p>
 * 

From source file com.edgenius.core.util.NonNullPropertiesFactoryBean.java

/**
 * This bean get properties from applicationContext.xml setting. But if any properties is blank(empty or null),
 * the property will be removed from list. 
 * 
 * For real scenario, Hibernate property "hibernate.default_schema" only valid if it has value. Otherwise, Hibernate 
 * cannot work well if its value is null or empty. But this is most common things, such as MySQL or Oracle, schema normally 

From source file de.acosix.alfresco.utility.repo.subsystems.SubsystemPropertiesFactoryBean.java

/**
 * @author Axel Faust, <a href="http://acosix.de">Acosix GmbH</a>
 */
public class SubsystemPropertiesFactoryBean extends PropertiesLoaderSupport
        implements FactoryBean<Properties>, ApplicationContextAware, InitializingBean {

From source file org.imsglobal.basiclti.consumersecret.impl.PropertiesConsumerSecretServiceImpl.java

/**
 * Property file based implementation of the {@link ConsumerSecretService}, making use of the spring {@link PropertiesLoaderSupport} to
 * provide the properties. Please review the documentation of the {@link PropertiesLoaderSupport} class on how to set the property file.
 * 
 * The property file is treated as read only.
 * 

From source file net.cnmconsulting.spring.config.PropertiesFactoryBean.java

/**
 * This code is based off of
 * {@link org.springframework.beans.factory.config.PropertiesFactoryBean}. It
 * also decrypts encoded passwords. Allows for making a properties file from a
 * classpath location available as Properties instance in a bean factory. Can be
 * used to populate any bean property of type Properties via a bean reference.