List of usage examples for org.springframework.beans.factory.config PropertyPlaceholderConfigurer subclass-usage
From source file nl.clockwork.common.PropertyPlaceholderConfigurer.java
public class PropertyPlaceholderConfigurer extends org.springframework.beans.factory.config.PropertyPlaceholderConfigurer { private Map<String, String> properties; @Override protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties properties)
From source file nl.knaw.dans.common.lang.spring.UsernamePropertyPlaceholderConfigurer.java
/**
* User name dependent PropertyPlaceholderConfigurer. This class looks for a property file <b>on the
* classpath</b> under the name conf/app/[user.name].properties, where [user.name] is defined by the value of the
* System property 'user.name'. If no user-specific file is found, this class uses the property file
* under conf/app/application.properties.
*
From source file com.baomidou.framework.spring.SWPropertyPlaceholderConfigurer.java
/**
* java.exe?-Dsw.home=D:/development???*.properties. ?properties?:
* <ol>
* <li>?---D:/development/jdbc.properties</li>
* <li>---D:/test/jdbc.properties</li>
* <li>---D:/online/jdbc.properties</li>
From source file com.autentia.wuija.util.spring.SpringPropertiesHolder.java
public class SpringPropertiesHolder extends PropertyPlaceholderConfigurer { private static Map<String, String> propertiesMap; private static final Logger LOG = LoggerFactory.getLogger(SpringPropertiesHolder.class); @Override
From source file org.okj.commons.spring.GlobalPropertyPlaceholderConfigurer.java
/**
* Property placeholder utilized to allow Spring placeholder variables to be substituted via settings from
* globals. property
*
* @see com.med.configuration.Globals
* @see org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
From source file com.kylinolap.rest.security.PasswordPlaceholderConfigurer.java
/** * @author xduo * */ public class PasswordPlaceholderConfigurer extends PropertyPlaceholderConfigurer {
From source file org.vbossica.springbox.config.PropertyPlaceholderDebuggingConfigurer.java
/** * Utility class to debug from where the heck Spring loads the properties from. * * @author vladimir */ public class PropertyPlaceholderDebuggingConfigurer extends PropertyPlaceholderConfigurer {
From source file org.openinfinity.core.spring.JdbcPropertyPlaceholderConfigurer.java
/**
* Property configurator class which enables property reading from the shared database.
*
* @author Ilkka Leinonen
* @version 1.0.2
* @since 1.0.0
From source file nl.knaw.dans.common.lang.spring.HomeDirectoryBasedPropertyPlaceholderConfigurer.java
/**
* A {@link PropertyPlaceholderConfigurer} based on the location of a {@link HomeDirectory}. The
* properties are expected to be located in the location $HOME_DIRECTORY/cfg/application.properties,
* where $HOME_DIRECTORY is the location of said directory. The implementation of {@link HomeDirectory}
* determines the way to find out this location. This could be for instance through an environment
* variable of system property.
From source file edu.amc.sakai.user.PropertyResolver.java
public class PropertyResolver extends PropertyPlaceholderConfigurer { /** * Essentially a public version of {@link #parseStringValue(String, java.util.Properties, String)} * which takes a property name (without placeholder prefix or suffix) and returns the value * which would be injected into the <code>BeanFactory</code> at startup. Useful for