现在我在我的 xml 文件中有这个:
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/dashboardsupervisor" />
<property name="username" value="root" />
<property name="password" value="${jdbc.password}" />
</bean>
和
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>file:C:/jdbc.properties</value>
</property>
</bean>
现在,我的问题是我不知道这个文件(jdbc.properties)的确切位置,因为这个应用程序将在不同的计算机上运行,在某些地方它安装在 c: 中,有时可能在 f:..所以如果我不知道这个文件的路径,如果有的话我可以找到它。
谢谢