前段時間作了一個項目,在開發的過程當中,也沒有考慮到配置文件的問題。後來項目完成了,打包的時候要求,要求將項目中的配置文件外移,方便修改配置文件。花了我兩天多的時間 java
才弄明白,因而記錄下,以防之後再遇到相似問題。 spring
使用spring的org.springframework.beans.factory.config.PropertyPlaceholderConfigurer類加載Properties配置文件,經過源碼能夠知道,默認加載的是classpath下的文件,配 shell
置以下: spa
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <value>classpath:config/init.properties</value> </property> </bean>
若是有多個配置文件加載,則: code
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:config/init.properties</value> <value>classpath:config/init.properties</value> </list> </property> </bean>
這樣spring就可以加載properties文件了。 blog
可是對於外部目錄的配置文件,使用org.springframework.beans.factory.config.PropertyPlaceholderConfigurer也是能夠加載的,不過要修改他的路徑配置方式,以下: 開發
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>file:${user.dir}/config/init.properties</value> <value>file:${user.dir}/config/init2.properties</value> </list> </property> </bean>
這樣就能夠成功加載外部目錄的配置文件了,${user.dir}是系統變量,指用戶當前目錄所在。 get
應該某些需求,配置文件得從java代碼是加載,這裏我就說同樣代碼中加載外部目錄的配置文件的方式,加載classpath目錄下的配置文件這裏就再也不多說了,相信 源碼
網上有太多較好的簡答。以下代碼: 博客
private static final Properties sysConfig = new Properties(); static { try { InputStream iStream = new FileInputStream(new File("config", "shellConfig.properties")); sysConfig.load(iStream); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } public static String getPropertyValue(String key){ return sysConfig.getProperty(key); }
但願對你們有所幫助!