单个工程中Spring+Mybatis连接多个数据库的配置(个人分享版本)

来源:互联网 发布:怎么样提升淘宝流量 编辑:程序博客网 时间:2024/05/16 11:45

上一篇博客说到同一个问题,经过和朋友的研究已经参考网上的资料,现在给出一份更简洁的配置。

情景:现在单个工程中需要连接两个库,这两个库在同一个mysql中,两个库都需要进行读写。

解决:

第一步:将springmybatis整合,这个过程就不具体演示了,在这个过程中创建了直接使用的五个配置文件、两个类、一个标识。

五个配置文件:

jdbc.propertis(数据库连接信息)

applicationContext.xmlspring的核心配置文件)

applicationContext-transaction.xmlspring事务管理配置文件)

mybatis-config.xmlmybatis的核心配置文件)

applicationContext-mybatis.xmlspringmybatis整合的配置文件)

两个类:

DataSourceContextHolder.java

DynamicDataSource.java

一个标识:

实体类和数据库表的对应。

第二步:jdbc.properties数据连接信息配置

#users用户信息对应的数据库users.jdbc.driver=com.mysql.jdbc.Driverusers.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=trueusers.jdbc.username=rootusers.jdbc.password=123456 #product商品信息对应的数据库product.jdbc.driver=com.mysql.jdbc.Driverproduct.jdbc.url=jdbc:mysql://127.0.0.1:3306/product?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=trueproduct.jdbc.username=rootproduct.jdbc.password=123456

 

第三步:applicationContext.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:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!-- 使用spring自带的占位符替换功能 --><beanclass="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><!-- 允许JVM参数覆盖 --><property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" /><!-- 忽略没有找到的资源文件 --><property name="ignoreResourceNotFound" value="true" /><!-- 配置资源文件 --><property name="locations"><list><value>classpath:jdbc.properties</value></list></property></bean><context:component-scan base-package="com.millery" /><!-- 数据库连接池 :usersDataSource --><bean id="usersDataSource" class="com.jolbox.bonecp.BoneCPDataSource"destroy-method="close"><!-- 数据库驱动 --><property name="driverClass" value="${users.jdbc.driver}" /><!-- 相应驱动的jdbcUrl --><property name="jdbcUrl" value="${users.jdbc.url}" /><!-- 数据库的用户名 --><property name="username" value="${users.jdbc.username}" /><!-- 数据库的密码 --><property name="password" value="${users.jdbc.password}" /><!-- 检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0 --><property name="idleConnectionTestPeriod" value="60" /><!-- 连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0 --><property name="idleMaxAge" value="30" /><!-- 每个分区最大的连接数 --><property name="maxConnectionsPerPartition" value="150" /><!-- 每个分区最小的连接数 --><property name="minConnectionsPerPartition" value="5" /></bean><!-- 数据库连接池 :productDataSource --><bean id="productDataSource" class="com.jolbox.bonecp.BoneCPDataSource"destroy-method="close"><!-- 数据库驱动 --><property name="driverClass" value="${product.jdbc.driver}" /><!-- 相应驱动的jdbcUrl --><property name="jdbcUrl" value="${product.jdbc.url}" /><!-- 数据库的用户名 --><property name="username" value="${product.jdbc.username}" /><!-- 数据库的密码 --><property name="password" value="${product.jdbc.password}" /><!-- 检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0 --><property name="idleConnectionTestPeriod" value="60" /><!-- 连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0 --><property name="idleMaxAge" value="30" /><!-- 每个分区最大的连接数 --><property name="maxConnectionsPerPartition" value="150" /><!-- 每个分区最小的连接数 --><property name="minConnectionsPerPartition" value="5" /></bean><!-- 数据库连接池 --><bean id="dynamicDataSource" class="com.millery.utils.DynamicDataSource"><property name="targetDataSources"><map key-type="java.lang.String"><entry value-ref="usersDataSource" key="usersDataSource" /><entry value-ref="productDataSource" key="productDataSource" /></map></property><!-- 默认使用productDataSource的数据源 --><property name="defaultTargetDataSource" ref="productDataSource" /></bean>

第四步:application-transaction.xmlspring事务管理配置文件 

<beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"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-4.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsdhttp://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsdhttp://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"><!-- 定义事务管理器 --><bean id="transactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><!-- 使用动态的数据源dynamicDataSource --><property name="dataSource" ref="dynamicDataSource" /></bean><!-- 定义事务策略 --><tx:advice id="txAdvice" transaction-manager="transactionManager"><tx:attributes><!--所有以query开头的方法都是只读的 --><tx:method name="query*" read-only="true" /><!--其他方法使用默认事务策略 --><tx:method name="*" /></tx:attributes></tx:advice><aop:config><!--pointcut元素定义一个切入点,execution中的第一个星号 用以匹配方法的返回类型, 这里星号表明匹配所有返回类型。 com.abc.dao.*.*(..)表明匹配cn.millery.mybatis.service包下的所有类的所有 方法 --><aop:pointcut id="myPointcut"expression="execution(* com.millery.service.*.*(..))" /><!--将定义好的事务处理策略应用到上述的切入点 --><aop:advisor advice-ref="txAdvice" pointcut-ref="myPointcut" /></aop:config></beans>

第五步:mybatis-config.xmlmybatis核心配置文件

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"  "http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration><settings><!-- 开启驼峰自动映射 --><setting name="mapUnderscoreToCamelCase" value="true" /></settings></configuration>

第六步:applicationContex-mybatis.xmlspringmybatis整合配置文件

<?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:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!-- 定义Mybatis的SqlSessionFactory --><bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><!-- 定义数据源,数据源使用动态的数据源dynamicDataSource --><property name="dataSource" ref="dynamicDataSource" /><!-- 指定mybatis全局配置文件 --><property name="configLocation" value="classpath:mybatis/mybatis-config.xml" /><!-- 扫描mappers目录以及子目录下的所有xml文件 --><property name="mapperLocations" value="classpath:mybatis/mappers/**/*.xml" /><!-- 别名扫描包 --><property name="typeAliasesPackage" value="com.millery.pojo" /></bean><span style="white-space:pre"></span><!-- 定义Mapper接口扫描器 --><span style="white-space:pre"></span><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><span style="white-space:pre"></span><property name="basePackage" value="com.millery.mapper" /><span style="white-space:pre"></span></bean></beans>



第七步:创建两个类,放到com.millery.utils包中

DataSourceContextHolder类:

package com.millery.utils;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();    }}

DynamicDataSource类:

package com.millery.utils;import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;public class DynamicDataSource extends AbstractRoutingDataSource {    @Override    protected Object determineCurrentLookupKey() {        return DataSourceContextHolder.getDbType();    }}

第八步:关键的一步,一个标识,在设置动态数据源的时候,连接了两个库,但是在怎 么确定每次连接都是需要连接的数据库呢,那就要这个标识了。

假设users数据库中有一张表交user,这张表对应到java代码中有个实体类。在实体类中我们都要加注解@Table(name=”表名”),此时的表名不能再直接写user,而是写users.user(数据库名.数据表),这里的数据库名就是关键的一个标识。如果现在product数据库中有一个item数据表,此时同上面的一样,加上product数据库的标识即可。

 

最后一步:就是写一个测试的类进行测试,这里就偷个懒不写,读者根据自己的需求写。

注意:

1、此配置是通过讨论测试成功的方案,比之前的个人版本更优化,配置更简洁,如果有更多的数据库连接,只需要在spring核心配置文件中添加一个数据源,然后配置到动态数据源中即可;

2、配置仅供参考,直接复制,可能出现异常,毕竟每个人电脑的环境不是完全相同的。

鸣谢:此博客是经过讨论和参考朋友博客完成,特此感谢在网上共享研究成果资源的朋 友。

博友对应博文友情链接:博友博文链接,点击进入

2 0
原创粉丝点击