Java spring mvc多数据源配置
程序员文章站
2022-03-26 13:34:36
...
转自:http://www.itpub.net/thread-1906608-1-1.html
1、首先配置两个数据库
2、再配置一个dataSource 管理 key 值和value值对应,默认选择dataSourceA ,其他配置按照正常的spring mvc 配置即可。
3、sessionFactory 中使用 dataSource做数据源。
4、新建一个DynamicDataSource类继承AbstractRoutingDataSource。
5、切换数据源,这一步必须在进入业务层之前切换。
1、首先配置两个数据库
<bean id="dataSourceA" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <property name="maxActive" value="${jdbc.maxActive}" /> <property name="maxWait" value="${jdbc.maxWait}" /> </bean> <bean id="dataSourceB" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="${vjdbc.driverClassName}" /> <property name="url" value="${vjdbc.url}" /> <property name="username" value="${vjdbc.username}" /> <property name="password" value="${vjdbc.password}" /> <property name="maxActive" value="${jdbc.maxActive}" /> <property name="maxWait" value="${jdbc.maxWait}" /> </bean>
2、再配置一个dataSource 管理 key 值和value值对应,默认选择dataSourceA ,其他配置按照正常的spring mvc 配置即可。
<bean id="dataSource" class="com.broadengate.util.DynamicDataSource"> <!-- 通过key-value的形式来关联数据源 --> <property name="targetDataSources"> <map key-type="java.lang.String"> <entry value-ref="dataSourceA" key="dataSourceA"></entry> <entry value-ref="dataSourceB" key="dataSourceB"></entry> </map> </property> <property name="defaultTargetDataSource" ref="dataSourceA" > </property> </bean>
3、sessionFactory 中使用 dataSource做数据源。
4、新建一个DynamicDataSource类继承AbstractRoutingDataSource。
public class DynamicDataSource extends AbstractRoutingDataSource{ public static final String DATA_SOURCE_A = "dataSourceA"; public static final String DATA_SOURCE_B = "dataSourceB"; 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(); } @Override protected Object determineCurrentLookupKey() { return getCustomerType(); } }
5、切换数据源,这一步必须在进入业务层之前切换。
DynamicDataSource.setCustomerType(DynamicDataSource.DATA_SOURCE_A);
推荐阅读
-
Java框架搭建之Maven、Mybatis、Spring MVC整合搭建(图文)
-
详解Spring Cloud Eureka多网卡配置总结
-
spring mvc配置bootstrap教程
-
spring Mvc配置xml使ResponseBody返回Json的方法示例
-
Spring MVC框架配置方法详解
-
spring基于通用Dao的多数据源配置详解
-
java 使用memcached以及spring 配置memcached完整实例代码
-
Spring boot工具类静态属性注入及多环境配置详解
-
干货分享:ASP.NET CORE(C#)与Spring Boot MVC(JAVA)异曲同工的编程方式总结
-
三、解决Spring MVC拦截器导致静态资源访问失败(基于java注解配置)