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

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

解决:

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

五个配置文件:

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

applicationContext.xml(spring的核心配置文件)

applicationContext-transaction.xml(spring事务管理配置文件)

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

applicationContext-mybatis.xml(spring和mybatis整合的配置文件)

两个类:

DataSourceContextHolder.java

DynamicDataSource.java

一个标识:

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

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



[html] view plain copy


print

?



    1. #users用户信息对应的数据库  
    2. users.jdbc.driver=com.mysql.jdbc.Driver  
    3. users.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
    4. users.jdbc.username=root
    5. users.jdbc.password=123456
    6.    
    7. #product商品信息对应的数据库  
    8. product.jdbc.driver=com.mysql.jdbc.Driver  
    9. product.jdbc.url=jdbc:mysql://127.0.0.1:3306/product?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
    10. product.jdbc.username=root
    11. product.jdbc.password=123456



    #users用户信息对应的数据库
    users.jdbc.driver=com.mysql.jdbc.Driver
    users.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
    users.jdbc.username=root
    users.jdbc.password=123456


    product商品信息对应的数据库

    product.jdbc.driver=com.mysql.jdbc.Driver
    product.jdbc.url=jdbc:mysql://127.0.0.1:3306/product?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
    product.jdbc.username=root
    product.jdbc.password=123456

     

    第三步:applicationContext.xml核心配置文件内容如下


    [html] view plain copy


    print

    ?



      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:p=“http://www.springframework.org/schema/p”
      4. xmlns:context=“http://www.springframework.org/schema/context”
      5. xmlns:mvc=“http://www.springframework.org/schema/mvc”
      6. xsi:schemaLocation=”http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
      7.         http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd  
      8. >
      9.   
      10. <!– 使用spring自带的占位符替换功能 –>
      11. <bean
      12. class=“org.springframework.beans.factory.config.PropertyPlaceholderConfigurer”>
      13. <!– 允许JVM参数覆盖 –>
      14. <property name=“systemPropertiesModeName” value=“SYSTEM_PROPERTIES_MODE_OVERRIDE” />
      15. <!– 忽略没有找到的资源文件 –>
      16. <property name=“ignoreResourceNotFound” value=“true” />
      17. <!– 配置资源文件 –>
      18. <property name=“locations”>
      19. <list>
      20. <value>classpath:jdbc.properties</value>
      21. </list>
      22. </property>
      23. </bean>
      24.   
      25. <context:component-scan base-package=“com.millery” />
      26.   
      27. <!– 数据库连接池 :usersDataSource –>
      28. <bean id=“usersDataSource” class=“com.jolbox.bonecp.BoneCPDataSource”
      29. destroy-method=“close”>
      30. <!– 数据库驱动 –>
      31. <property name=“driverClass” value=“{users.jdbc.driver}"</span><span> </span><span >/></span><span>  </span></span></li><li class=""><span>        <span ><!-- 相应驱动的jdbcUrl --></span><span>  </span></span></li><li ><span>        <span ><</span><span >property</span><span> </span><span >name</span><span>=</span><span >"jdbcUrl"</span><span> </span><span >value</span><span>=</span><span >" />  
      32. <!-- 相应驱动的jdbcUrl -->  
      33. <property name="jdbcUrl" value="{users.jdbc.url}” />
      34. <!– 数据库的用户名 –>
      35. <property name=“username” value=“{users.jdbc.username}"</span><span> </span><span >/></span><span>  </span></span></li><li class=""><span>        <span ><!-- 数据库的密码 --></span><span>  </span></span></li><li ><span>        <span ><</span><span >property</span><span> </span><span >name</span><span>=</span><span >"password"</span><span> </span><span >value</span><span>=</span><span >" />  
      36. <!-- 数据库的密码 -->  
      37. <property name="password" value="{users.jdbc.password}” />
      38. <!– 检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0 –>
      39. <property name=“idleConnectionTestPeriod” value=“60” />
      40. <!– 连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0 –>
      41. <property name=“idleMaxAge” value=“30” />
      42. <!– 每个分区最大的连接数 –>
      43. <property name=“maxConnectionsPerPartition” value=“150” />
      44. <!– 每个分区最小的连接数 –>
      45. <property name=“minConnectionsPerPartition” value=“5” />
      46. </bean>
      47. <!– 数据库连接池 :productDataSource –>
      48. <bean id=“productDataSource” class=“com.jolbox.bonecp.BoneCPDataSource”
      49. destroy-method=“close”>
      50. <!– 数据库驱动 –>
      51. <property name=“driverClass” value=“{product.jdbc.driver}"</span><span> </span><span >/></span><span>  </span></span></li><li class=""><span>        <span ><!-- 相应驱动的jdbcUrl --></span><span>  </span></span></li><li ><span>        <span ><</span><span >property</span><span> </span><span >name</span><span>=</span><span >"jdbcUrl"</span><span> </span><span >value</span><span>=</span><span >" />  
      52. <!-- 相应驱动的jdbcUrl -->  
      53. <property name="jdbcUrl" value="{product.jdbc.url}” />
      54. <!– 数据库的用户名 –>
      55. <property name=“username” value=“{product.jdbc.username}"</span><span> </span><span >/></span><span>  </span></span></li><li class=""><span>        <span ><!-- 数据库的密码 --></span><span>  </span></span></li><li ><span>        <span ><</span><span >property</span><span> </span><span >name</span><span>=</span><span >"password"</span><span> </span><span >value</span><span>=</span><span >" />  
      56. <!-- 数据库的密码 -->  
      57. <property name="password" value="{product.jdbc.password}” />
      58. <!– 检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0 –>
      59. <property name=“idleConnectionTestPeriod” value=“60” />
      60. <!– 连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0 –>
      61. <property name=“idleMaxAge” value=“30” />
      62. <!– 每个分区最大的连接数 –>
      63. <property name=“maxConnectionsPerPartition” value=“150” />
      64. <!– 每个分区最小的连接数 –>
      65. <property name=“minConnectionsPerPartition” value=“5” />
      66. </bean>
      67.   
      68.   
      69.   
      70. <!– 数据库连接池 –>
      71. <bean id=“dynamicDataSource” class=“com.millery.utils.DynamicDataSource”>
      72. <property name=“targetDataSources”>
      73. <map key-type=“java.lang.String”>
      74. <entry value-ref=“usersDataSource” key=“usersDataSource” />
      75. <entry value-ref=“productDataSource” key=“productDataSource” />
      76. </map>
      77. </property>
      78.   
      79. <!– 默认使用productDataSource的数据源 –>
      80. <property name=“defaultTargetDataSource” ref=“productDataSource” />
      81. </bean>
       
      <?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自带的占位符替换功能 -->
          <bean
              class="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>
      <?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自带的占位符替换功能 -->
          <bean
              class="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.xml,spring事务管理配置文件 


      [html] view plain copy


      print 
         ? 
         
       
      1. <beans xmlns=“http://www.springframework.org/schema/beans”
      2. xmlns:context=“http://www.springframework.org/schema/context” xmlns:p=“http://www.springframework.org/schema/p”
      3. xmlns:aop=“http://www.springframework.org/schema/aop” xmlns:tx=“http://www.springframework.org/schema/tx”
      4. xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”
      5. xsi:schemaLocation=”http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  
      6.     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd  
      7.     http://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.xsd  
      8. >
      9.   
      10. <!– 定义事务管理器 –>
      11. <bean id=“transactionManager”
      12. class=“org.springframework.jdbc.datasource.DataSourceTransactionManager”>
      13. <!– 使用动态的数据源dynamicDataSource –>
      14. <property name=“dataSource” ref=“dynamicDataSource” />
      15. </bean>
      16.   
      17. <!– 定义事务策略 –>
      18. <tx:advice id=“txAdvice” transaction-manager=“transactionManager”>
      19. <tx:attributes>
      20. <!–所有以query开头的方法都是只读的 –>
      21. <tx:method name=“query*” read-only=“true” />
      22. <!–其他方法使用默认事务策略 –>
      23. <tx:method name=“*” />
      24. </tx:attributes>
      25. </tx:advice>
      26.   
      27. <aop:config>
      28.         <!–pointcut元素定义一个切入点,execution中的第一个星号 用以匹配方法的返回类型, 这里星号表明匹配所有返回类型。 com.abc.dao.*.*(..)表明匹配cn.millery.mybatis.service包下的所有类的所有   
      29. >
      30. <aop:pointcut id=“myPointcut”
      31. expression=“execution(* com.millery.service.*.*(..))” />
      32. <!–将定义好的事务处理策略应用到上述的切入点 –>
      33. <aop:advisor advice-ref=“txAdvice” pointcut-ref=“myPointcut” />
      34. </aop:config>
      35.   
      36. </beans>


      <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.xsd
          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
          http://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.xsd
          http://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.xml , mybatis 核心配置文件


      [html] view plain copy


      print

      ?


      1. <?xml version=“1.0” encoding=“UTF-8” ?>
      2. <!DOCTYPE configuration  
      3.   PUBLIC ”-//mybatis.org//DTD Config 3.0//EN”  
      4. >
      5. <configuration>
      6. <settings>
      7. <!– 开启驼峰自动映射 –>
      8. <setting name=“mapUnderscoreToCamelCase” value=“true” />
      9. </settings>
      10. </configuration>


      <?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.xml,spring和mybatis整合配置文件


      [html] view plain copy


      print

      ?


      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:p=“http://www.springframework.org/schema/p”
      4. xmlns:context=“http://www.springframework.org/schema/context”
      5. xmlns:mvc=“http://www.springframework.org/schema/mvc”
      6. xsi:schemaLocation=”http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
      7.         http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd  
      8. >
      9.   
      10. <!– 定义Mybatis的SqlSessionFactory –>
      11. <bean id=“sqlSessionFactory” class=“org.mybatis.spring.SqlSessionFactoryBean”>
      12. <!– 定义数据源,数据源使用动态的数据源dynamicDataSource –>
      13. <property name=“dataSource” ref=“dynamicDataSource” />
      14. <!– 指定mybatis全局配置文件 –>
      15. <property name=“configLocation” value=“classpath:mybatis/mybatis-config.xml” />
      16. <!– 扫描mappers目录以及子目录下的所有xml文件 –>
      17. <property name=“mapperLocations” value=“classpath:mybatis/mappers/**/*.xml” />
      18. <!– 别名扫描包 –>
      19. <property name=“typeAliasesPackage” value=“com.millery.pojo” />
      20. </bean>
      21. <span style=“white-space:pre”>    </span><!– 定义Mapper接口扫描器 –>
      22. <span style=“white-space:pre”>    </span><bean class=“org.mybatis.spring.mapper.MapperScannerConfigurer”>
      23. <span style=“white-space:pre”>        </span><property name=“basePackage” value=“com.millery.mapper” />
      24. <span style=“white-space:pre”>    </span></bean>
      25. </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: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类:


      [html] view plain copy


      print

      ?


      1. package com.millery.utils;  
      2. public class DataSourceContextHolder {  
      3. <String> contextHolder = new ThreadLocal<String>();  
      4.     public static void setDbType(String dbType) {  
      5.         contextHolder.set(dbType);  
      6.     }  
      7.     public static String getDbType() {  
      8.         return ((String) contextHolder.get());  
      9.     }  
      10.     public static void clearDbType() {  
      11.         contextHolder.remove();  
      12.     }  
      13. }

      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

      类:


      [html] view plain copy


      print

      ?


      1. package com.millery.utils;  
      2. import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource;  
      3. public class DynamicDataSource extends AbstractRoutingDataSource {  
      4.     @Override  
      5.     protected Object determineCurrentLookupKey() {  
      6.         return DataSourceContextHolder.getDbType();  
      7.     }  
      8. }


      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、配置仅供参考,直接复制,可能出现异常,毕竟每个人电脑的环境不是完全相同的。


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

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

      解决:

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

      五个配置文件:

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

      applicationContext.xml(spring的核心配置文件)

      applicationContext-transaction.xml(spring事务管理配置文件)

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

      applicationContext-mybatis.xml(spring和mybatis整合的配置文件)

      两个类:

      DataSourceContextHolder.java

      DynamicDataSource.java

      一个标识:

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

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



      [html] view plain copy


      print

      ?


      1. #users用户信息对应的数据库  
      2. users.jdbc.driver=com.mysql.jdbc.Driver  
      3. users.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
      4. users.jdbc.username=root
      5. users.jdbc.password=123456
      6.    
      7. #product商品信息对应的数据库  
      8. product.jdbc.driver=com.mysql.jdbc.Driver  
      9. product.jdbc.url=jdbc:mysql://127.0.0.1:3306/product?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
      10. product.jdbc.username=root
      11. product.jdbc.password=123456


      #users用户信息对应的数据库
      users.jdbc.driver=com.mysql.jdbc.Driver
      users.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
      users.jdbc.username=root
      users.jdbc.password=123456