我的应用程序(假设)有以下服务器;我使用 MySQL。
1) 应用程序使用的数据库(位于日本的服务器)
2) 数据库备份(位于秘鲁的服务器)
3) 紧急数据库(位于美国的服务器)
关于 Spring 的功能,我有几个问题:
A)如何在所有数据源中同时存在?
B) 我如何在 Spring 中创建一个连接池,以便如果我的第一个数据源没有响应,系统会自动使用第二个数据源?
这是我的实际applicationContext-datasource.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>META-INF/database.properties</value>
</property>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="hibernate.hbm2ddl.auto" value="${hibernate.hbm2ddl.auto}"/>
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource">
<ref local="dataSource"/>
</property>
</bean>
问候