Spring+MyBatis多資料來源切換
在實際的公司項目中,很可能會遇到一個問題就是,一個Java項目,但是項目中涉及兩個資料庫,這兩個資料庫還在不同IP的機子上。
遇到這種情況的時候,我們有兩個選擇
1、不走spring的aop方式,直接去多做兩個dataSource
2、用spring進行管理,靈活地進行資料來源切換
現在就來對第2種方式進行筆記:
spring.xml設定檔:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:task="http://www.springframework.org/schema/task" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd ">
<!--配置mysql資料庫參數 -->
<context:property-placeholder location="mysql.properties" />
<!--多個資料來源配置 -->
<bean id="db1" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<!-- 串連資料庫參數 -->
<property name="driverClassName" value="${db1.driver}" />
<property name="url" value="${db1.url}" />
<property name="username" value="${db1.username}" />
<property name="password" value="${db1.password}" />
<!--串連池參數 -->
<property name="initialSize" value="10" />
<property name="maxActive" value="500" />
<property name="maxIdle" value="40" />
<property name="minIdle" value="10" />
</bean>
<bean id="db2" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<!-- 串連資料庫參數 -->
<property name="driverClassName" value="${db2.driver}" />
<property name="url" value="${db2.url}" />
<property name="username" value="${db2.username}" />
<property name="password" value="${db2.password}" />
<!--串連池參數 -->
<property name="initialSize" value="10" />
<property name="maxActive" value="500" />
<property name="maxIdle" value="40" />
<property name="minIdle" value="10" />
</bean>
<bean id="dataSource" class="com.ckd.datasource.mybatis.DynamicDataSource">
<property name="targetDataSources">
<map key-type="java.lang.String">
<entry key="db1" value-ref="db1" />
<entry key="db2" value-ref="db2" />
</map>
</property>
<property name="defaultTargetDataSource" ref="db2" />
</bean>
<!-- mybatis配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:mybatis/mybatis-config.xml" />
<property name="mapperLocations" value="classpath:mybatis/mapper/*.xml"/>
</bean>
<!--擷取sqlSession-->
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0">
<ref bean="sqlSessionFactory"/>
</constructor-arg>
</bean>
<!-- 交易管理員配置,單資料來源事務 -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
</beans>
------------------------------------------------------------------
/**
* @fileName DataSourceContextHolder.java
* @author chenkaideng
* @date 2015年8月27日
* @describe 資料來源設值Holder類
*/
public class DataSourceContextHolder {
private static final ThreadLocal<String> contextHolder = new ThreadLocal<String>();
public static void setDbType(String dbType) {
contextHolder.set(dbType);
}
public static String getDbType() {
return ((String) contextHolder.get());
}
public static void clearDbType() {
contextHolder.remove();
}
}
弄完以上的事情,剩下的事情就簡單了
-》先是載入spring.xml檔案applicationContext = new ClassPathXmlApplicationContext("spring.xml");
-》然後設定資料來源DataSourceContextHolder.setDbType("db1");
-》接著從applicationContext 中擷取sqlSession = (SqlSession) applicationContext.getBean("sqlSession");
-》最後就可以拿這個sqlSession去做增刪改查的操作
注意:不用對這個sqlSession做close和comit的操作,因為都已經由spring自己管理了,不用手動做這些操作。
MyBatis入門學習教程
Java實戰應用:Mybatis實現單表的增刪改
[Java][Mybatis]物理分頁實現
Mybatis快速入門教程
Mybatis的關於批量資料操作的測試
Mybatis中對List<Object> 對象List的批處理插入操作
MyBatis 的詳細介紹:請點這裡
MyBatis 的:請點這裡
本文永久更新連結地址: