List of usage examples for org.springframework.beans.factory.config PropertyPlaceholderConfigurer subclass-usage
From source file com.francetelecom.clara.cloud.commons.JndiAwarePropertyPlaceholderConfigurer.java
/**
* A jndi-aware extension of the Spring PropertyPlaceholderConfigurer (v2.5.6).
* By default this resolves properties from jndi first, then any referenced
* property files and then falls back to System properties and the System
* Environment.
* <p>
From source file de.acosix.alfresco.mtsupport.repo.subsystems.TenantAwareSubsystemPlaceholderConfigurer.java
/** * * @author Axel Faust, <a href="http://acosix.de">Acosix GmbH</a> */ public class TenantAwareSubsystemPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
From source file org.encuestame.config.startup.EnMePlaceHolderConfigurer.java
/** * Extend {@link PropertyPlaceholderConfigurer} * @author Picado, Juan juanATencuestame.org * @since Mar 17, 2011 */ public class EnMePlaceHolderConfigurer extends PropertyPlaceholderConfigurer {
From source file info.jtrac.config.JtracConfigurer.java
/**
* Custom extension of the Spring PropertyPlaceholderConfigurer that
* sets up the jtrac.home System property (creates if required) and also creates
* a default jtrac.properties file for HSQLDB - useful for those who want
* to quickly evaluate JTrac. Just dropping the war into a servlet container
* would work without the need to even configure a datasource.
From source file org.apache.kylin.rest.security.PasswordPlaceholderConfigurer.java
/** * @author xduo * */ public class PasswordPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
From source file org.encuestame.core.config.EnMePlaceHolderConfigurer.java
/** * Extend {@link PropertyPlaceholderConfigurer} * @author Picado, Juan juanATencuestame.org * @since Mar 17, 2011 */ public class EnMePlaceHolderConfigurer extends PropertyPlaceholderConfigurer {
From source file com.photon.phresco.configuration.XmlPropertyPlaceholderConfigurer.java
public class XmlPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer { private static final String serverEnvironment = "SERVER_ENVIRONMENT"; private PropertiesPersister propertiesPersister = new DefaultPropertiesPersister(); private Resource[] locations; private Resource[] configurationTypes;
From source file com.baomidou.framework.velocity.VelocityPropertyPlaceholderConfigurer.java
/**
* <p>
* velocity ? properties
* </p>
* <p>
* ? properties velocity VelocityContext ?
From source file eu.eidas.node.utils.PropertiesUtil.java
/** * Util to retrieve a property value. Contains the properties loaded by the placeholderConfig * bean on spring initialization */ public class PropertiesUtil extends PropertyPlaceholderConfigurer implements IEIDASConfigurationProxy { /**
From source file org.yamj.common.tools.PropertyTools.java
public final class PropertyTools extends PropertyPlaceholderConfigurer { private static final Logger LOG = LoggerFactory.getLogger(PropertyTools.class); private static final Properties PROPERTIES = new Properties(); // Default as in PropertyPlaceholderConfigurer private int springSystemPropertiesMode = SYSTEM_PROPERTIES_MODE_FALLBACK;