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

12 篇文章 1 订阅
11 篇文章 2 订阅

之前在解决一个项目连接数据库问题的时候在网上苦寻答案无果,于是显示自己研究,终于黄天不负有心,接先来我将分享一下配置的具体过程。

此种配置并非是数据库的读写分离,而是连接两个库。

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

解决:

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

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

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

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

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

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

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

#users\u7528\u6237\u4FE1\u606F\u5BF9\u5E94\u7684\u6570\u636E\u5E93
users.jdbc.driver=com.mysql.jdbc.Driver
<pre name="code" class="html">users<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true</span>
users<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.username=root</span>
users<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.password=123456</span>

#product\u5546\u54C1\u4FE1\u606F\u5BF9\u5E94\u7684\u6570\u636E\u5E93product.jdbc.driver=com.mysql.jdbc.Driver

product<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.url=jdbc:mysql://127.0.0.1:3306/product?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true</span>
product<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.username=root</span>
product<span style="font-family: Arial, Helvetica, sans-serif;">.jdbc.password=123456</span>
 

 

第三步: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自带的占位符替换功能 -->
	<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" />

	<!-- 用户对应的数据源 -->
	<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>

	<!-- 商品对应的数据源 -->
	<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>
</beans>

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

 

 

<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="usersTransactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="usersDataSource" />
	</bean>

	<!-- 定义商品事务管理器 -->
	<bean id="productTransactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="productDataSource" />
	</bean>

	<!-- 定义用户事务策略 -->
	<tx:advice id="usersTxAdvice" transaction-manager="usersTransactionManager">
		<tx:attributes>
			<!--所有以query开头的方法都是只读的 -->
			<tx:method name="query*" read-only="true" />
			<!--其他方法使用默认事务策略 -->
			<tx:method name="*" />
		</tx:attributes>
	</tx:advice>

	<!-- 定义商品事务策略 -->
	<tx:advice id="productTxAdvice" transaction-manager="productTransactionManager">
		<tx:attributes>
			<!--所有以query开头的方法都是只读的 -->
			<tx:method name="query*" read-only="true" />
			<!--其他方法使用默认事务策略 -->
			<tx:method name="*" />
		</tx:attributes>
	</tx:advice>

	<aop:config>
		<!--pointcut元素定义一个切入点,execution中的第一个星号 用以匹配方法的返回类型, 这里星号表明匹配所有返回类型。 com.abc.dao.*.*(..)表明匹配com.millery.mybatis.service包下的所有类的所有 
			方法 -->
		<aop:pointcut id="myPointcut"
			expression="execution(* com.millery.manage.service.*.*(..))" />
		<!--将定义好的事务处理策略应用到上述的切入点 -->
		<aop:advisor advice-ref="usersTxAdvice" pointcut-ref="myPointcut" />
		<aop:advisor advice-ref="productTxAdvice" pointcut-ref="myPointcut" />
	</aop:config>
</beans>

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

 

 

<?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整合配置文件

<?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="usersSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 定义数据源 -->
		<property name="dataSource" ref="usersDataSource" />
		<!-- 指定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.manage.pojo" />
	</bean>
	<!-- 定义Mybatis的SqlSessionFactory -->
	<bean id="productSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 定义数据源 -->
		<property name="dataSource" ref="productDataSource" />
		<!-- 指定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.manage.pojo" />
	</bean>
	<!-- users -->
	<bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
		<property name="mapperInterface" value="com.millery.manage.mapper.UserMapper" />
		<property name="sqlSessionFactory" ref="usersSqlSessionFactory" />
	</bean>

	<!-- product -->
	<bean id="productMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">
		<property name="mapperInterface" value="com.millery.manage.mapper.product Mapper" />
		<property name="sqlSessionFactory" ref="productSqlSessionFactory" />
	</bean>
</beans>

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

 

注意:

1、此配置只是个人研究出来的,比较繁杂,在没有想出具体解决方案的时候,可以使用这种方式;

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

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序猿洞晓

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值