目前我们正在从属性文件中加载我们的 JDBC 源值,如下所示:
<context:property-placeholder location="classpath:master.properties" ignore-unresolvable="true" />
<bean id="mainDataSource" class="com.jolbox.bonecp.BoneCPDataSource"
destroy-method="close">
<property name="driverClass" value="${database.driver}" />
<property name="jdbcUrl" value="${database.url}" />
<property name="username" value="${database.user}" />
<property name="password" value="${database.password}" />
<property name="idleConnectionTestPeriod" value="60" />
<property name="idleMaxAge" value="240" />
<property name="maxConnectionsPerPartition" value="2" />
<property name="minConnectionsPerPartition" value="2" />
<property name="partitionCount" value="3" />
<property name="acquireIncrement" value="10" />
<property name="statementsCacheSize" value="50" />
<property name="releaseHelperThreads" value="3" />
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy"
scope="singleton">
<property name="targetDataSource">
<ref local="mainDataSource" />
</property>
</bean>
这个段。与基于类路径的 app.properties 文件一起工作并摆脱 app.properties。
我们想从 context.xml 加载这些值(放置在META-INF
或中$CATALINA_HOME/conf/context.xml
)。它将帮助我们在 prod/staging 服务器上加载正确的值。
将不胜感激任何帮助或替代方法/建议。(如果已经回答了类似的问题,请分享链接)谢谢!