java配置檔案設定絕對路徑

無聲的霧發表於2020-09-24

相對路徑加classpath

絕對路徑加file:

<bean id="preferences" class="nebula.system.config.JRelaxPropertyPlaceholderConfigurer" >
        <property name="encrypt" value="false"/>
        <!-- 指定資料庫配置檔案路徑 -->
        <property name="locations">
            <list>
                <value>file:E:/tempconfig/jdbc_mysql.properties</value>
            </list>
        </property>
    </bean>
<value>classpath:jdbc_mysql.properties</value>

 

相關文章