Example usage for org.springframework.beans.factory.config PropertyPlaceholderConfigurer subclass-usage

List of usage examples for org.springframework.beans.factory.config PropertyPlaceholderConfigurer subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config PropertyPlaceholderConfigurer subclass-usage.

Usage

From source file org.topazproject.ambra.configuration.SpringPlaceholderConfigurer.java

/**
 * A Spring Configurer that uses the commons-configuration singleton
 * <code>ConfigurationStore</code> in this package to get its configuration.
 *
 * @author Eric Brown
 */

From source file org.psikeds.common.config.PropertiesConfigurer.java

/**
 * Extension of
 * org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
 * You can specified relative filenames for properties files, that will be
 * resolved within the config directory.
 * 

From source file org.alfresco.config.JndiPropertyPlaceholderConfigurer.java

/**
 * An extended {@link PropertyPlaceholderConfigurer} that allows properties to be set through JNDI entries in
 * java:comp/env/properties/*. The precedence given to system properties is still as per the superclass.
 * 
 * @author dward
 */

From source file de.drv.dsrv.utility.spring.common.StageAwarePropertyPlaceholderConfigurer.java

public class StageAwarePropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

    private final transient String stage;

    /**
     * Konstruktor.

From source file com.himanshu.spring.context.loader.sameconfigallcontext.bean.visitor.PrefixPropertyPlaceholderConfigurer.java

public class PrefixPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

    private String prefix;

    public String getPrefix() {
        return prefix;

From source file org.slc.sli.ingestion.util.ExposedPropertyPlaceholderConfigurer.java

/**
 * A property resource configurer that exposes the configured properties.
 *
 * @author Pablo Krause
 * @see http://forum.springsource.org/showthread.php?69605-Spring-3M2-Value-and-
 *      PropertyPlaceholderConfigurer&highlight=@Value%20propertyplaceholderconfigurer

From source file org.trpr.platform.runtime.impl.config.spring.PropertyPlaceholderConfigurer.java

/**
*
* The <code>PropertyPlaceholderConfigurer</code> is a sub-type of the Spring {@link org.springframework.beans.factory.config.PropertyPlaceholderConfigurer} that
* follows the following order for locating and loading properties:
* <pre>
*    1. Check if default properties have been set using {@link PropertyPlaceholderConfigurer#setDefaultPropertiesOnClasspath(String)}

From source file no.dusken.common.plugin.PluginPropertyPlaceholderConfigurer.java

/**
 * @author Marvin B. Lillehaug <lillehau@underdusken.no>
 * Reads the configfile resources/{pluginUid}.conf and checks if the pluginstore has
 * other values. If the store has, the plugin uses those instead.
 */
public class PluginPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

From source file io.servicecomb.config.ConfigurationSpringInitializer.java

public class ConfigurationSpringInitializer extends PropertyPlaceholderConfigurer {
    public ConfigurationSpringInitializer() {
        ConfigUtil.installDynamicConfig();
        setOrder(Ordered.LOWEST_PRECEDENCE / 2);
        setIgnoreUnresolvablePlaceholders(true);
    }

From source file org.constretto.spring.ConstrettoPropertyPlaceholderConfigurer.java

/**
 * An adaption of the spring framework {@link PropertyPlaceholderConfigurer} class, using an implementation of the
 * {@link ConstrettoConfiguration} interface to resolve keys
 * <p/>
 * <h2>Example :</h2>
 * <p/>