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 com.viettel.reeng.backend.util.ReengPropertyHolder.java

/**
 *
 * @author vas_phunp
 */
public class ReengPropertyHolder extends PropertyPlaceholderConfigurer {

From source file net.local.clustercontrol.core.configuration.EnvironmentAwarePropertyConfigurer.java

public class EnvironmentAwarePropertyConfigurer extends PropertyPlaceholderConfigurer {

    private Properties props = EnvironmentAwareProperties.getInstance();

    protected Properties mergeProperties() {
        return props;

From source file gov.nih.nci.integration.util.CommonsPropertyPlaceholderConfigurer.java

/**
 * PropertyPlaceholderConfigurer that resolves properties from any of following locations in the same order
 * <p/>
 * 
 * <pre>
 * #a)${user.home}/.integration/${projectName}/${propertyFileName}

From source file com.aquest.emailmarketing.web.config.PropertiesUtil.java

public class PropertiesUtil extends PropertyPlaceholderConfigurer {
    private static Map<String, String> properties = new HashMap<String, String>();

    @Override
    protected void loadProperties(final Properties props) throws IOException {
        super.loadProperties(props);

From source file dtu.ds.warnme.utils.PropertiesUtils.java

/**
 * @author Bartosz Cichecki
 */
public class PropertiesUtils extends PropertyPlaceholderConfigurer {

    private static Map<String, String> PROPERTIES;

From source file org.freeeed.search.web.CustomPropertyPlaceHolderConfigurer.java

/**
 * 
 * Utility class for substituting spring property place holders
 * with their real values.
 * 
 * @author ilazarov

From source file org.springweb.core.MutilPropertyPlaceholderConfigurer.java

/**
 * 
 * 
 */
public class MutilPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer implements InitializingBean {

From source file com.joel1di1.spring.jndi.initializer.PropertyPlaceholderConfigurerFake.java

public class PropertyPlaceholderConfigurerFake extends PropertyPlaceholderConfigurer {
    @Override
    protected void loadProperties(Properties props) throws IOException {
        Witness.sendMessage("placeholder loadProperties");
        super.loadProperties(props);
    }

From source file cn.cug.laboratory.web.HeldPropertyPlaceholderConfigurer.java

/**
 * springPropertyPlaceholderConfigurer,??properties.
 *
 * @author Xiaolong Zuo
 * @since 1.0.0
 */

From source file com.google.api.ads.adwords.awalerting.util.DynamicPropertyPlaceholderConfigurer.java

/**
 * This class is used to inject dynamic resource files into the Spring application context.
 */
public class DynamicPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
    private static Resource dynamicResource;