spring多数据源配置

原文地址:http://blog.csdn.net/wangpeng047/article/details/8866239


项目中我们经常会遇到多数据源的问题,尤其是数据同步或定时任务等项目更是如此。多数据源让人最头痛的,不是配置多个数据源,而是如何能灵活动态的切换数据源。例如在一个springhibernate的框架的项目中,我们在spring配置中往往是配置一个dataSource来连接数据库,然后绑定给sessionFactory,在dao层代码中再指定sessionFactory来进行数据库操作。

正如上图所示,每一块都是指定绑死的,如果是多个数据源,也只能是下图中那种方式。

可看出在Dao层代码中写死了两个SessionFactory,这样日后如果再多一个数据源,还要改代码添加一个SessionFactory,显然这并不符合开闭原则。

那么正确的做法应该是

代码如下:

1. applicationContext.xml

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"  
  4.     xmlns:cache="http://www.springframework.org/schema/cache"  
  5.     xmlns:context="http://www.springframework.org/schema/context"  
  6.     xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"  
  7.     xmlns:jms="http://www.springframework.org/schema/jms" xmlns:lang="http://www.springframework.org/schema/lang"  
  8.     xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:oxm="http://www.springframework.org/schema/oxm"  
  9.     xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task"  
  10.     xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"  
  11.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd    
  12.     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd    
  13.     http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd    
  14.     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd    
  15.     http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd    
  16.     http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd    
  17.     http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.1.xsd    
  18.     http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.1.xsd    
  19.     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd    
  20.     http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.1.xsd    
  21.     http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.1.xsd    
  22.     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd    
  23.     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">  
  24.   
  25.     <context:annotation-config />  
  26.   
  27.     <context:component-scan base-package="com"></context:component-scan>  
  28.   
  29.     <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  30.         <property name="locations">  
  31.             <list>  
  32.                 <value>classpath:com/resource/config.properties</value>  
  33.             </list>  
  34.         </property>  
  35.     </bean>  
  36.   
  37.     <bean id="dataSourceOne" class="com.mchange.v2.c3p0.ComboPooledDataSource"  
  38.         destroy-method="close">  
  39.         <property name="driverClass" value="${dbOne.jdbc.driverClass}" />  
  40.         <property name="jdbcUrl" value="${dbOne.jdbc.url}" />  
  41.         <property name="user" value="${dbOne.jdbc.user}" />  
  42.         <property name="password" value="${dbOne.jdbc.password}" />  
  43.         <property name="initialPoolSize" value="${dbOne.jdbc.initialPoolSize}" />  
  44.         <property name="minPoolSize" value="${dbOne.jdbc.minPoolSize}" />  
  45.         <property name="maxPoolSize" value="${dbOne.jdbc.maxPoolSize}" />  
  46.     </bean>  
  47.   
  48.     <bean id="dataSourceTwo" class="com.mchange.v2.c3p0.ComboPooledDataSource"  
  49.         destroy-method="close">  
  50.         <property name="driverClass" value="${dbTwo.jdbc.driverClass}" />  
  51.         <property name="jdbcUrl" value="${dbTwo.jdbc.url}" />  
  52.         <property name="user" value="${dbTwo.jdbc.user}" />  
  53.         <property name="password" value="${dbTwo.jdbc.password}" />  
  54.         <property name="initialPoolSize" value="${dbTwo.jdbc.initialPoolSize}" />  
  55.         <property name="minPoolSize" value="${dbTwo.jdbc.minPoolSize}" />  
  56.         <property name="maxPoolSize" value="${dbTwo.jdbc.maxPoolSize}" />  
  57.     </bean>  
  58.   
  59.     <bean id="dynamicDataSource" class="com.core.DynamicDataSource">  
  60.         <property name="targetDataSources">  
  61.             <map key-type="java.lang.String">  
  62.                 <entry value-ref="dataSourceOne" key="dataSourceOne"></entry>  
  63.                 <entry value-ref="dataSourceTwo" key="dataSourceTwo"></entry>  
  64.             </map>  
  65.         </property>  
  66.         <property name="defaultTargetDataSource" ref="dataSourceOne">  
  67.         </property>  
  68.     </bean>  
  69.   
  70.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
  71.         <property name="dataSource" ref="dynamicDataSource" />  
  72.         <property name="hibernateProperties">  
  73.             <props>  
  74.                 <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>  
  75.                 <prop key="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext</prop>  
  76.                 <prop key="hibernate.show_sql">false</prop>  
  77.                 <prop key="hibernate.format_sql">true</prop>  
  78.                 <prop key="hbm2ddl.auto">create</prop>  
  79.             </props>  
  80.         </property>  
  81.         <property name="packagesToScan">  
  82.             <list>  
  83.                 <value>com.po</value>  
  84.             </list>  
  85.         </property>  
  86.     </bean>  
  87.   
  88.     <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  
  89.         <property name="sessionFactory" ref="sessionFactory" />  
  90.     </bean>  
  91.   
  92.     <aop:config>  
  93.         <aop:pointcut id="transactionPointCut" expression="execution(* com.dao..*.*(..))" />  
  94.         <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointCut" />  
  95.     </aop:config>  
  96.   
  97.     <tx:advice id="txAdvice" transaction-manager="transactionManager">  
  98.         <tx:attributes>  
  99.             <tx:method name="add*" propagation="REQUIRED" />  
  100.             <tx:method name="save*" propagation="REQUIRED" />  
  101.             <tx:method name="update*" propagation="REQUIRED" />  
  102.             <tx:method name="delete*" propagation="REQUIRED" />  
  103.             <tx:method name="*" read-only="true" />  
  104.         </tx:attributes>  
  105.     </tx:advice>  
  106.   
  107.     <aop:config>  
  108.         <aop:aspect id="dataSourceAspect" ref="dataSourceInterceptor">  
  109.             <aop:pointcut id="daoOne" expression="execution(* com.dao.one.*.*(..))" />  
  110.             <aop:pointcut id="daoTwo" expression="execution(* com.dao.two.*.*(..))" />  
  111.             <aop:before pointcut-ref="daoOne" method="setdataSourceOne" />  
  112.             <aop:before pointcut-ref="daoTwo" method="setdataSourceTwo" />  
  113.         </aop:aspect>  
  114.     </aop:config>  
  115. </beans>  
<?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:cache="http://www.springframework.org/schema/cache"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee"
	xmlns:jms="http://www.springframework.org/schema/jms" xmlns:lang="http://www.springframework.org/schema/lang"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:oxm="http://www.springframework.org/schema/oxm"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:task="http://www.springframework.org/schema/task"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd  
   	http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd  
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd  
    http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd  
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd  
    http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.1.xsd  
  	http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.1.xsd  
   	http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd  
  	http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.1.xsd  
 	http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.1.xsd  
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd  
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">

	<context:annotation-config />

	<context:component-scan base-package="com"></context:component-scan>

	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<list>
				<value>classpath:com/resource/config.properties</value>
			</list>
		</property>
	</bean>

	<bean id="dataSourceOne" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="driverClass" value="${dbOne.jdbc.driverClass}" />
		<property name="jdbcUrl" value="${dbOne.jdbc.url}" />
		<property name="user" value="${dbOne.jdbc.user}" />
		<property name="password" value="${dbOne.jdbc.password}" />
		<property name="initialPoolSize" value="${dbOne.jdbc.initialPoolSize}" />
		<property name="minPoolSize" value="${dbOne.jdbc.minPoolSize}" />
		<property name="maxPoolSize" value="${dbOne.jdbc.maxPoolSize}" />
	</bean>

	<bean id="dataSourceTwo" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="driverClass" value="${dbTwo.jdbc.driverClass}" />
		<property name="jdbcUrl" value="${dbTwo.jdbc.url}" />
		<property name="user" value="${dbTwo.jdbc.user}" />
		<property name="password" value="${dbTwo.jdbc.password}" />
		<property name="initialPoolSize" value="${dbTwo.jdbc.initialPoolSize}" />
		<property name="minPoolSize" value="${dbTwo.jdbc.minPoolSize}" />
		<property name="maxPoolSize" value="${dbTwo.jdbc.maxPoolSize}" />
	</bean>

	<bean id="dynamicDataSource" class="com.core.DynamicDataSource">
		<property name="targetDataSources">
			<map key-type="java.lang.String">
				<entry value-ref="dataSourceOne" key="dataSourceOne"></entry>
				<entry value-ref="dataSourceTwo" key="dataSourceTwo"></entry>
			</map>
		</property>
		<property name="defaultTargetDataSource" ref="dataSourceOne">
		</property>
	</bean>

	<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dynamicDataSource" />
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
				<prop key="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext</prop>
				<prop key="hibernate.show_sql">false</prop>
				<prop key="hibernate.format_sql">true</prop>
				<prop key="hbm2ddl.auto">create</prop>
			</props>
		</property>
		<property name="packagesToScan">
			<list>
				<value>com.po</value>
			</list>
		</property>
	</bean>

	<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory" />
	</bean>

	<aop:config>
		<aop:pointcut id="transactionPointCut" expression="execution(* com.dao..*.*(..))" />
		<aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointCut" />
	</aop:config>

	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="add*" propagation="REQUIRED" />
			<tx:method name="save*" propagation="REQUIRED" />
			<tx:method name="update*" propagation="REQUIRED" />
			<tx:method name="delete*" propagation="REQUIRED" />
			<tx:method name="*" read-only="true" />
		</tx:attributes>
	</tx:advice>

	<aop:config>
		<aop:aspect id="dataSourceAspect" ref="dataSourceInterceptor">
			<aop:pointcut id="daoOne" expression="execution(* com.dao.one.*.*(..))" />
			<aop:pointcut id="daoTwo" expression="execution(* com.dao.two.*.*(..))" />
			<aop:before pointcut-ref="daoOne" method="setdataSourceOne" />
			<aop:before pointcut-ref="daoTwo" method="setdataSourceTwo" />
		</aop:aspect>
	</aop:config>
</beans>

2. DynamicDataSource.class

  1. package com.core;  
  2.   
  3. import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;  
  4.   
  5. public class DynamicDataSource extends AbstractRoutingDataSource{  
  6.   
  7.     @Override  
  8.     protected Object determineCurrentLookupKey() {  
  9.         return DatabaseContextHolder.getCustomerType();   
  10.     }  
  11.   
  12. }  
package com.core;

import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;

public class DynamicDataSource extends AbstractRoutingDataSource{

	@Override
	protected Object determineCurrentLookupKey() {
		return DatabaseContextHolder.getCustomerType(); 
	}

}

3. DatabaseContextHolder.class

  1. package com.core;  
  2.   
  3. public class DatabaseContextHolder {  
  4.   
  5.     private static final ThreadLocal<String> contextHolder = new ThreadLocal<String>();  
  6.   
  7.     public static void setCustomerType(String customerType) {  
  8.         contextHolder.set(customerType);  
  9.     }  
  10.   
  11.     public static String getCustomerType() {  
  12.         return contextHolder.get();  
  13.     }  
  14.   
  15.     public static void clearCustomerType() {  
  16.         contextHolder.remove();  
  17.     }  
  18. }  
package com.core;

public class DatabaseContextHolder {

	private static final ThreadLocal<String> contextHolder = new ThreadLocal<String>();

	public static void setCustomerType(String customerType) {
		contextHolder.set(customerType);
	}

	public static String getCustomerType() {
		return contextHolder.get();
	}

	public static void clearCustomerType() {
		contextHolder.remove();
	}
}

4. DataSourceInterceptor.class

  1. package com.core;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.springframework.stereotype.Component;  
  5.   
  6. @Component  
  7. public class DataSourceInterceptor {  
  8.   
  9.     public void setdataSourceOne(JoinPoint jp) {  
  10.         DatabaseContextHolder.setCustomerType("dataSourceOne");  
  11.     }  
  12.       
  13.     public void setdataSourceTwo(JoinPoint jp) {  
  14.         DatabaseContextHolder.setCustomerType("dataSourceTwo");  
  15.     }  
  16. }  
package com.core;

import org.aspectj.lang.JoinPoint;
import org.springframework.stereotype.Component;

@Component
public class DataSourceInterceptor {

	public void setdataSourceOne(JoinPoint jp) {
		DatabaseContextHolder.setCustomerType("dataSourceOne");
	}
	
	public void setdataSourceTwo(JoinPoint jp) {
		DatabaseContextHolder.setCustomerType("dataSourceTwo");
	}
}

5. po实体类

  1. package com.po;  
  2.   
  3. import javax.persistence.Column;  
  4. import javax.persistence.Entity;  
  5. import javax.persistence.Id;  
  6. import javax.persistence.Table;  
  7.   
  8. @Entity  
  9. @Table(name = "BTSF_BRAND", schema = "hotel")  
  10. public class Brand {  
  11.   
  12.     private String id;  
  13.     private String names;  
  14.     private String url;  
  15.   
  16.     @Id  
  17.     @Column(name = "ID", unique = true, nullable = false, length = 10)  
  18.     public String getId() {  
  19.         return this.id;  
  20.     }  
  21.   
  22.     public void setId(String id) {  
  23.         this.id = id;  
  24.     }  
  25.   
  26.     @Column(name = "NAMES", nullable = false, length = 50)  
  27.     public String getNames() {  
  28.         return this.names;  
  29.     }  
  30.   
  31.     public void setNames(String names) {  
  32.         this.names = names;  
  33.     }  
  34.   
  35.     @Column(name = "URL", length = 200)  
  36.     public String getUrl() {  
  37.         return this.url;  
  38.     }  
  39.   
  40.     public void setUrl(String url) {  
  41.         this.url = url;  
  42.     }  
  43. }  
package com.po;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "BTSF_BRAND", schema = "hotel")
public class Brand {

	private String id;
	private String names;
	private String url;

	@Id
	@Column(name = "ID", unique = true, nullable = false, length = 10)
	public String getId() {
		return this.id;
	}

	public void setId(String id) {
		this.id = id;
	}

	@Column(name = "NAMES", nullable = false, length = 50)
	public String getNames() {
		return this.names;
	}

	public void setNames(String names) {
		this.names = names;
	}

	@Column(name = "URL", length = 200)
	public String getUrl() {
		return this.url;
	}

	public void setUrl(String url) {
		this.url = url;
	}
}
  1. package com.po;  
  2.   
  3. import javax.persistence.Column;  
  4. import javax.persistence.Entity;  
  5. import javax.persistence.Id;  
  6. import javax.persistence.Table;  
  7.   
  8. @Entity  
  9. @Table(name = "CITY", schema = "car")  
  10. public class City {  
  11.   
  12.     private Integer id;  
  13.       
  14.     private String name;  
  15.   
  16.     @Id  
  17.     @Column(name = "ID", unique = true, nullable = false)  
  18.     public Integer getId() {  
  19.         return id;  
  20.     }  
  21.   
  22.     public void setId(Integer id) {  
  23.         this.id = id;  
  24.     }  
  25.   
  26.     @Column(name = "NAMES", nullable = false, length = 50)  
  27.     public String getName() {  
  28.         return name;  
  29.     }  
  30.   
  31.     public void setName(String name) {  
  32.         this.name = name;  
  33.     }  
  34. }  
package com.po;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "CITY", schema = "car")
public class City {

	private Integer id;
	
	private String name;

	@Id
	@Column(name = "ID", unique = true, nullable = false)
	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	@Column(name = "NAMES", nullable = false, length = 50)
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}

6. BrandDaoImpl.class

  1. package com.dao.one;  
  2.   
  3. import java.util.List;  
  4.   
  5. import javax.annotation.Resource;  
  6.   
  7. import org.hibernate.Query;  
  8. import org.hibernate.SessionFactory;  
  9. import org.springframework.stereotype.Repository;  
  10.   
  11. import com.po.Brand;  
  12.   
  13. @Repository  
  14. public class BrandDaoImpl implements IBrandDao {  
  15.   
  16.     @Resource  
  17.     protected SessionFactory sessionFactory;  
  18.   
  19.     @SuppressWarnings("unchecked")  
  20.     @Override  
  21.     public List<Brand> findAll() {  
  22.         String hql = "from Brand";  
  23.         Query query = sessionFactory.getCurrentSession().createQuery(hql);  
  24.         return query.list();  
  25.     }  
  26. }  
package com.dao.one;

import java.util.List;

import javax.annotation.Resource;

import org.hibernate.Query;
import org.hibernate.SessionFactory;
import org.springframework.stereotype.Repository;

import com.po.Brand;

@Repository
public class BrandDaoImpl implements IBrandDao {

	@Resource
	protected SessionFactory sessionFactory;

	@SuppressWarnings("unchecked")
	@Override
	public List<Brand> findAll() {
		String hql = "from Brand";
		Query query = sessionFactory.getCurrentSession().createQuery(hql);
		return query.list();
	}
}

7. CityDaoImpl.class

  1. package com.dao.two;  
  2.   
  3. import java.util.List;  
  4.   
  5. import javax.annotation.Resource;  
  6.   
  7. import org.hibernate.Query;  
  8. import org.hibernate.SessionFactory;  
  9. import org.springframework.stereotype.Repository;  
  10.   
  11. import com.po.City;  
  12.   
  13. @Repository  
  14. public class CityDaoImpl implements ICityDao {  
  15.   
  16.     @Resource  
  17.     private SessionFactory sessionFactory;  
  18.   
  19.     @SuppressWarnings("unchecked")  
  20.     @Override  
  21.     public List<City> find() {  
  22.         String hql = "from City";  
  23.         Query query = sessionFactory.getCurrentSession().createQuery(hql);  
  24.         return query.list();  
  25.     }  
  26. }  
package com.dao.two;

import java.util.List;

import javax.annotation.Resource;

import org.hibernate.Query;
import org.hibernate.SessionFactory;
import org.springframework.stereotype.Repository;

import com.po.City;

@Repository
public class CityDaoImpl implements ICityDao {

	@Resource
	private SessionFactory sessionFactory;

	@SuppressWarnings("unchecked")
	@Override
	public List<City> find() {
		String hql = "from City";
		Query query = sessionFactory.getCurrentSession().createQuery(hql);
		return query.list();
	}
}

8. DaoTest.class

  1. package com.test;  
  2.   
  3. import java.util.List;  
  4.   
  5. import javax.annotation.Resource;  
  6.   
  7. import org.junit.Test;  
  8. import org.junit.runner.RunWith;  
  9. import org.springframework.test.context.ContextConfiguration;  
  10. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;  
  11. import org.springframework.test.context.transaction.TransactionConfiguration;  
  12.   
  13. import com.dao.one.IBrandDao;  
  14. import com.dao.two.ICityDao;  
  15. import com.po.Brand;  
  16. import com.po.City;  
  17.   
  18. @RunWith(SpringJUnit4ClassRunner.class)  
  19. @ContextConfiguration(locations = "classpath:com/resource/applicationContext.xml")  
  20. @TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = false)  
  21. public class DaoTest {  
  22.   
  23.     @Resource  
  24.     private IBrandDao brandDao;  
  25.   
  26.     @Resource  
  27.     private ICityDao cityDao;  
  28.   
  29.     @Test  
  30.     public void testList() {  
  31.         List<Brand> brands = brandDao.findAll();  
  32.         System.out.println(brands.size());  
  33.   
  34.         List<City> cities = cityDao.find();  
  35.         System.out.println(cities.size());  
  36.     }  
  37. }  
package com.test;

import java.util.List;

import javax.annotation.Resource;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.TransactionConfiguration;

import com.dao.one.IBrandDao;
import com.dao.two.ICityDao;
import com.po.Brand;
import com.po.City;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:com/resource/applicationContext.xml")
@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = false)
public class DaoTest {

	@Resource
	private IBrandDao brandDao;

	@Resource
	private ICityDao cityDao;

	@Test
	public void testList() {
		List<Brand> brands = brandDao.findAll();
		System.out.println(brands.size());

		List<City> cities = cityDao.find();
		System.out.println(cities.size());
	}
}

利用aop,达到动态更改数据源的目的。当需要增加数据源的时候,我们只需要在applicationContext配置文件中添加aop配置,新建个DataSourceInterceptor即可。而不需要更改任何代码。


本篇博文中的拦截器dataSourceAspect配置是有问题的,由于咨询动态多数据源的人比较多,我因此做了个demo给大家以供参考,请移步:

Spring动态多数据源实例Demo

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值