Loading Properties with Spring (via System Properties)

前端 未结 3 633
暖寄归人
暖寄归人 2020-12-31 14:22

My problem is as follows:

I have server.properties for different environments. The path to those properties is provided trough a system property called

相关标签:
3条回答
  • 2020-12-31 15:01

    Ok. I solved it. The problem is both of my PropertyPlaceholders are BeanFactoryPostProcessor those get processed after the context is loaded but the properties are set after. So it is impossible to populate one PropertyPlaceholder with another.

    Here is my solution in code ;-)

    package property.util;
    
    import org.apache.commons.lang.StringUtils;
    import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
    import org.springframework.core.io.FileSystemResource;
    import org.springframework.core.io.Resource;
    
    import java.io.IOException;
    import java.util.Properties;
    
    /**
     * ConfigurablePropertyPlaceholder takes instructions which SystemProperty
     * contains the path to the propertyfile to load.
     *
     * @author Gabe Kaelin
     * 
     */
    public class ConfigurablePropertyPlaceholder extends PropertyPlaceholderConfigurer {
    
    
        private String propertyLocationSystemProperty;
        private String defaultPropertyFileName;
    
    
        public String getPropertyLocationSystemProperty() {
            return propertyLocationSystemProperty;
        }
    
        public void setPropertyLocationSystemProperty(String propertyLocationSystemProperty) {
            this.propertyLocationSystemProperty = propertyLocationSystemProperty;
        }
    
        public String getDefaultPropertyFileName() {
            return defaultPropertyFileName;
        }
    
        public void setDefaultPropertyFileName(String defaultPropertyFileName) {
            this.defaultPropertyFileName = defaultPropertyFileName;
        }
    
        /**
         * Overridden to fill the location with the path from the {@link #propertyLocationSystemProperty}
         *
         * @param props propeties instance to fill
         * @throws IOException
         */
    
        @Override
        protected void loadProperties(Properties props) throws IOException {
            Resource location = null;
            if(StringUtils.isNotEmpty(propertyLocationSystemProperty)){
    
                String propertyFilePath = System.getProperties().getProperty(propertyLocationSystemProperty);
                StringBuilder pathBuilder = new StringBuilder(propertyFilePath);
    
                if(StringUtils.isNotEmpty(defaultPropertyFileName) && !propertyFilePath.endsWith(defaultPropertyFileName)){
                    pathBuilder.append("/").append(defaultPropertyFileName);
                }
    
                location = new FileSystemResource(pathBuilder.toString());
            }
    
            setLocation(location);
            super.loadProperties(props);
        }
    }
    

    The according applicationContext.xml entry

    <bean id="propertyConfigurer" class="property.util.ConfigurablePropertyPlaceholder">
      <property name="propertyLocationSystemProperty" value="propertyPath" />
      <property name="defaultPropertyFileName" value="server.properties" />
      <property name="ignoreResourceNotFound" value="false"/>
    </bean>
    

    the java process can be started with

    java -DpropertyPath=/path/to/properties
    

    and it loads the properties and they are available in the applicationContext.xml

    0 讨论(0)
  • 2020-12-31 15:07

    The solution given to extend PropertyPlaceholderConfigurer seems ok but it should also work relying on the standard org.springframework.beans.factory.config.PropertiesFactoryBean implementation without writing any additional code.

    Simply use the variable reference that will be resolved by Spring.

    e.g.

    Configure spring as follows:

    <bean id="configProp"
          class="org.springframework.beans.factory.config.PropertiesFactoryBean">
        <property name="locations">
            <list>
                <value>file:${propertyPath}</value>
            </list>
        </property>
    </bean>
    

    Once you invoke Java with the env variable (propertyPath), Spring will resolve it, load the property file and inject it into the application context

    java -DpropertyPath=/path/to/properties

    0 讨论(0)
  • 2020-12-31 15:15

    You have two options:

    • use sys: as prefix (and hence sys:propertyPath)

    • set the placeholderSuffix property of the placeholder configurer to }, so that you can access the properties with sys{prop}. If you omit this property, you will have to use sys{prop

    0 讨论(0)
提交回复
热议问题