2013-03-14 
项目目录结构如下:
spring配置文件
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:aop="http://www.springframework.org/schema/aop"  
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
xmlns:context="http://www.springframework.org/schema/context"  
xsi:schemaLocation="   
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd   
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd   
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd   
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd   
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">  
<bean  
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
<property name="locations">  
<value>classpath:init-config.properties</value>  
</property>  
</bean>  
<!-- enable component scanning (beware that this does not enable mapper scanning!) -->  
<context:component-scan base-package="org.zhuc.mybatis" />  
<!-- enable autowire -->  
<context:annotation-config />  
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"  
init-method="init" destroy-method="close">  
<!-- 基本属性 url、user、password -->  
<property name="url" value="${dataSource.url}" />  
<property name="username" value="${dataSource.username}" />  
<property name="password" value="${dataSource.password}" />  
<property name="connectionProperties" value="${dataSource.driver}"></property>  
<!-- 配置初始化大小、最小、最大 -->  
<property name="initialSize" value="1" />  
<property name="minIdle" value="1" />  
<property name="maxActive" value="20" />  
<!-- 配置获取连接等待超时的时间 -->  
<property name="maxWait" value="60000" />  
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->  
<property name="timeBetweenEvictionRunsMillis" value="60000" />  
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->  
<property name="minEvictableIdleTimeMillis" value="300000" />  
<property name="validationQuery" value="SELECT 'x'" />  
<property name="testWhileIdle" value="true" />  
<property name="testOnBorrow" value="false" />  
<property name="testOnReturn" value="false" />  
<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->  
<property name="poolPreparedStatements" value="true" />  
<property name="maxPoolPreparedStatementPerConnectionSize"  
value="20" />  
<!-- 配置监控统计拦截的filters -->  
<property name="filters" value="stat" />  
</bean>  
<!-- define the SqlSessionFactory -->  
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
<property name="dataSource" ref="dataSource" />  
<property name="typeAliasesPackage" value="org.zhuc.mybatis.domain" />  
</bean>  
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>  
<property name="basePackage" value="org.zhuc.mybatis.mapper" />  
</bean>  
<!-- transaction manager, use JtaTransactionManager for global tx -->  
<bean id="transactionManager"  
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
<property name="dataSource" ref="dataSource" />  
<qualifier value="isap" />  
</bean>  
<!-- 全注解方式   需加上@Transactional -->  
<tx:annotation-driven transaction-manager="transactionManager" />  
<!-- 事务控制的业务方法配 -->  
<!--     
<tx:advice id="txAdvice" transaction-manager="transactionManager">  
<tx:attributes>  
<tx:method name="get*" read-only="true" />  
<tx:method name="page*" read-only="true" />  
<tx:method name="list*" read-only="true" />  
<tx:method name="*" />  
</tx:attributes>  
</tx:advice>  
-->  
<!-- 事务控制拦截 -->  
<!--     
<aop:config proxy-target-class="true">  
<aop:advisor pointcut="execution(* org.zhuc..*.service..*Service.*(..))"  
advice-ref="txAdvice" />  
</aop:config>  
-->  
<!-- =================================================================== -->  
<!-- 数据源2 -->  
<bean id="dataSource2" class="com.alibaba.druid.pool.DruidDataSource"  
init-method="init" destroy-method="close">  
<!-- 基本属性 url、user、password -->  
<property name="url" value="${dataSource2.url}" />  
<property name="username" value="${dataSource2.username}" />  
<property name="password" value="${dataSource2.password}" />  
<property name="connectionProperties" value="${dataSource2.driver}"></property>  
<!-- 配置初始化大小、最小、最大 -->  
<property name="initialSize" value="1" />  
<property name="minIdle" value="1" />  
<property name="maxActive" value="20" />  
<!-- 配置获取连接等待超时的时间 -->  
<property name="maxWait" value="60000" />  
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->  
<property name="timeBetweenEvictionRunsMillis" value="60000" />  
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->  
<property name="minEvictableIdleTimeMillis" value="300000" />  
<property name="validationQuery" value="SELECT 'x'" />  
<property name="testWhileIdle" value="true" />  
<property name="testOnBorrow" value="false" />  
<property name="testOnReturn" value="false" />  
<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->  
<property name="poolPreparedStatements" value="true" />  
<property name="maxPoolPreparedStatementPerConnectionSize"  
value="20" />  
<!-- 配置监控统计拦截的filters -->  
<property name="filters" value="stat" />  
</bean>  
<bean id="sqlSessionFactory2" class="org.mybatis.spring.SqlSessionFactoryBean">  
<property name="dataSource" ref="dataSource2" />  
<property name="typeAliasesPackage" value="org.zhuc.mybatis.domain2" />  
</bean>  
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory2"/>  
<property name="basePackage" value="org.zhuc.mybatis.mapper2" />  
</bean>  
<bean id="transactionManager2"  
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
<property name="dataSource" ref="dataSource2" />  
<qualifier value="insurance" />  
</bean>  
<!-- 全注解方式 -->  
<tx:annotation-driven transaction-manager="transactionManager2" />  
</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:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<bean
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath:init-config.properties</value>
</property>
</bean>
<!-- enable component scanning (beware that this does not enable mapper scanning!) -->
<context:component-scan base-package="org.zhuc.mybatis" />
<!-- enable autowire -->
<context:annotation-config />
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<!-- 基本属性 url、user、password -->
<property name="url" value="${dataSource.url}" />
<property name="username" value="${dataSource.username}" />
<property name="password" value="${dataSource.password}" />
<property name="connectionProperties" value="${dataSource.driver}"></property>
<!-- 配置初始化大小、最小、最大 -->
<property name="initialSize" value="1" />
<property name="minIdle" value="1" />
<property name="maxActive" value="20" />
<!-- 配置获取连接等待超时的时间 -->
<property name="maxWait" value="60000" />
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
<property name="minEvictableIdleTimeMillis" value="300000" />
<property name="validationQuery" value="SELECT 'x'" />
<property name="testWhileIdle" value="true" />
<property name="testOnBorrow" value="false" />
<property name="testOnReturn" value="false" />
<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
<property name="poolPreparedStatements" value="true" />
<property name="maxPoolPreparedStatementPerConnectionSize"
value="20" />
<!-- 配置监控统计拦截的filters -->
<property name="filters" value="stat" />
</bean>
<!-- define the SqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="org.zhuc.mybatis.domain" />
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
<property name="basePackage" value="org.zhuc.mybatis.mapper" />
</bean>
<!-- transaction manager, use JtaTransactionManager for global tx -->
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
<qualifier value="isap" />
</bean>
<!-- 全注解方式   需加上@Transactional -->
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- 事务控制的业务方法配 -->
<!--  
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true" />
<tx:method name="page*" read-only="true" />
<tx:method name="list*" read-only="true" />
<tx:method name="*" />
</tx:attributes>
</tx:advice>
-->
<!-- 事务控制拦截 -->
<!--  
<aop:config proxy-target-class="true">
<aop:advisor pointcut="execution(* org.zhuc..*.service..*Service.*(..))"
advice-ref="txAdvice" />
</aop:config>
-->
<!-- =================================================================== -->
<!-- 数据源2 -->
<bean id="dataSource2" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<!-- 基本属性 url、user、password -->
<property name="url" value="${dataSource2.url}" />
<property name="username" value="${dataSource2.username}" />
<property name="password" value="${dataSource2.password}" />
<property name="connectionProperties" value="${dataSource2.driver}"></property>
<!-- 配置初始化大小、最小、最大 -->
<property name="initialSize" value="1" />
<property name="minIdle" value="1" />
<property name="maxActive" value="20" />
<!-- 配置获取连接等待超时的时间 -->
<property name="maxWait" value="60000" />
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
<property name="minEvictableIdleTimeMillis" value="300000" />
<property name="validationQuery" value="SELECT 'x'" />
<property name="testWhileIdle" value="true" />
<property name="testOnBorrow" value="false" />
<property name="testOnReturn" value="false" />
<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
<property name="poolPreparedStatements" value="true" />
<property name="maxPoolPreparedStatementPerConnectionSize"
value="20" />
<!-- 配置监控统计拦截的filters -->
<property name="filters" value="stat" />
</bean>
<bean id="sqlSessionFactory2" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource2" />
<property name="typeAliasesPackage" value="org.zhuc.mybatis.domain2" />
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory2"/>
<property name="basePackage" value="org.zhuc.mybatis.mapper2" />
</bean>
<bean id="transactionManager2"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource2" />
<qualifier value="insurance" />
</bean>
<!-- 全注解方式 -->
<tx:annotation-driven transaction-manager="transactionManager2" />
</beans>
配置文件内容:
Java代码 
#数据库连接池设置   
dataSource.driver=com.mysql.jdbc.Driver   
dataSource.url=jdbc:mysql://localhost:3306/dwz   
dataSource.username=root   
dataSource.password=root   
dataSource2.driver=oracle.jdbc.driver.OracleDriver   
dataSource2.url=jdbc:oracle:thin:@192.168.10.43:1521:test   
dataSource2.username=test   
dataSource2.password=test  
#数据库连接池设置
dataSource.driver=com.mysql.jdbc.Driver
dataSource.url=jdbc:mysql://localhost:3306/dwz
dataSource.username=root
dataSource.password=root
dataSource2.driver=oracle.jdbc.driver.OracleDriver
dataSource2.url=jdbc:oracle:thin:@192.168.10.43:1521:test
dataSource2.username=test
dataSource2.password=test
Service类代码:
Java代码 
package org.zhuc.mybatis.service;   
import org.springframework.transaction.annotation.Transactional;   
/**  
* 基础mysql Service抽象类  
* 使用isap数据源及回滚  
* @author zhuc  
* @create 2013-3-11 下午4:27:33  
*/  
@Transactional(value = "isap", rollbackFor = Exception.class)   
public abstract class BaseMySqlService {   
}  
package org.zhuc.mybatis.service;
import org.springframework.transaction.annotation.Transactional;
/**
* 基础mysql Service抽象类
* 使用isap数据源及回滚
* @author zhuc
* @create 2013-3-11 下午4:27:33
*/
@Transactional(value = "isap", rollbackFor = Exception.class)
public abstract class BaseMySqlService {
}
Java代码 
package org.zhuc.mybatis.service;   
import java.util.List;   
import org.springframework.beans.factory.annotation.Autowired;   
import org.springframework.stereotype.Service;   
import org.zhuc.mybatis.domain.User;   
import org.zhuc.mybatis.mapper.UserMapper;   
/**  
* @author zhuc  
* @create 2013-3-11 下午1:19:03  
*/  
@Service("userService")   
//@Transactional(value = "isap", rollbackFor = Exception.class)   
public class UserService extends BaseMySqlService {   
@Autowired  
private UserMapper userMapper;   
/**  
* @param id  
* @return  
*/  
public User get(Integer id) {   
return userMapper.get(id);   
}   
/**  
* @param id  
* @return  
*/  
public User get2(Integer id) {   
return userMapper.get2(id);   
}   
/**  
* @return  
*/  
public List<User> findAll() {   
return userMapper.findAll();   
}   
/**  
* @param user  
* @throws Exception   
*/  
public void insert(User user) throws Exception {   
userMapper.insert(user);   
throw new Exception("testException");   
}   
}  
package org.zhuc.mybatis.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.zhuc.mybatis.domain.User;
import org.zhuc.mybatis.mapper.UserMapper;
/**
* @author zhuc
* @create 2013-3-11 下午1:19:03
*/
@Service("userService")
//@Transactional(value = "isap", rollbackFor = Exception.class)
public class UserService extends BaseMySqlService {
@Autowired
private UserMapper userMapper;
/**
* @param id
* @return
*/
public User get(Integer id) {
return userMapper.get(id);
}
/**
* @param id
* @return
*/
public User get2(Integer id) {
return userMapper.get2(id);
}
/**
* @return
*/
public List<User> findAll() {
return userMapper.findAll();
}
/**
* @param user
* @throws Exception 
*/
public void insert(User user) throws Exception {
userMapper.insert(user);
throw new Exception("testException");
}
}
Java代码 
package org.zhuc.mybatis.service;   
import org.springframework.beans.factory.annotation.Autowired;   
import org.springframework.stereotype.Service;   
import org.springframework.transaction.annotation.Transactional;   
import org.zhuc.mybatis.domain2.Flow;   
import org.zhuc.mybatis.mapper2.FlowMapper;   
/**  
* @author zhuc  
* @create 2013-3-11 下午1:19:03  
*/  
@Service("flowService")   
@Transactional(value = "insurance", rollbackFor = Exception.class)   
public class FlowService {   
@Autowired  
private FlowMapper flowMapper;   
/**  
* @param id  
* @return  
*/  
public Flow get(String id) {   
return flowMapper.get(id);   
}   
}  
package org.zhuc.mybatis.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.zhuc.mybatis.domain2.Flow;
import org.zhuc.mybatis.mapper2.FlowMapper;
/**
* @author zhuc
* @create 2013-3-11 下午1:19:03
*/
@Service("flowService")
@Transactional(value = "insurance", rollbackFor = Exception.class)
public class FlowService {
@Autowired
private FlowMapper flowMapper;
/**
* @param id
* @return
*/
public Flow get(String id) {
return flowMapper.get(id);
}
}
客户端测试类如下:
Java代码 
package spring;   
import org.springframework.context.ApplicationContext;   
import org.springframework.context.support.ClassPathXmlApplicationContext;   
import org.zhuc.mybatis.service.FlowService;   
import org.zhuc.mybatis.service.UserService;   
/**  
* @author zhuc  
* @create 2013-3-11 下午1:47:03  
*/  
public class MultiTest {   
/**  
* @param args  
* @throws Exception   
*/  
public static void main(String[] args) throws Exception {   
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");   
UserService userService = (UserService) ac.getBean("userService");   
System.out.println(userService.get(1));   
System.out.println(userService.get2(1));   
FlowService flowService = (FlowService) ac.getBean("flowService");   
System.out.println(flowService.get("94003d29-a7b0-42f0-839c-fa609b209ff1"));   
//      User user = new User();   
//      user.setId(100);   
//      user.setUserName("admin100");   
//      user.setPassword("password100");   
//      user.setTrueName("小李4");   
//      user.setCreateTime(new Date());   
//   
//      userService.insert(user);   //受事务管理,抛出Exception时将回滚  (rollbackFor)   
}   
}  
package spring;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.zhuc.mybatis.service.FlowService;
import org.zhuc.mybatis.service.UserService;
/**
* @author zhuc
* @create 2013-3-11 下午1:47:03
*/
public class MultiTest {
/**
* @param args
* @throws Exception 
*/
public static void main(String[] args) throws Exception {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = (UserService) ac.getBean("userService");
System.out.println(userService.get(1));
System.out.println(userService.get2(1));
FlowService flowService = (FlowService) ac.getBean("flowService");
System.out.println(flowService.get("94003d29-a7b0-42f0-839c-fa609b209ff1"));
//User user = new User();
//user.setId(100);
//user.setUserName("admin100");
//user.setPassword("password100");
//user.setTrueName("小李4");
//user.setCreateTime(new Date());
//
//userService.insert(user);//受事务管理,抛出Exception时将回滚  (rollbackFor)
}
}
输出结果:
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get - ooo Using Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@f6d64c5]
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get - ==>  Preparing: SELECT * from T_USER where id = ? 
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get - ==> Parameters: 1(Integer)
User [id=1, userName=userName0, password=password0, roleId=3, trueName=姓名0, createTime=Mon Mar 04 14:17:31 CST 2013, modifyTime=Mon Mar 04 14:17:31 CST 2013]
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get2 - ooo Using Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@f6d64c5]
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get2 - ==>  Preparing: SELECT * from T_USER where id = ? 
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper.UserMapper.get2 - ==> Parameters: 1(Integer)
User [id=1, userName=userName0, password=password0, roleId=3, trueName=姓名0, createTime=Mon Mar 04 14:17:31 CST 2013, modifyTime=Mon Mar 04 14:17:31 CST 2013]
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper2.FlowMapper.get - ooo Using Connection [com.alibaba.druid.proxy.jdbc.ConnectionProxyImpl@11742dfe]
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper2.FlowMapper.get - ==>  Preparing: SELECT * from T_FLOW where FLOW_ID = ? 
2013-03-14 11:21:19 [main] DEBUG org.zhuc.mybatis.mapper2.FlowMapper.get - ==> Parameters: 94003d29-a7b0-42f0-839c-fa609b209ff1(String)
Flow [id=94003d29-a7b0-42f0-839c-fa609b209ff1, insuranceId=5a08abc4-463e-436d-b249-9954be487cdd, codeId=14, operatingTime=Mon Jan 21 16:47:12 CST 2013]
mybatis-demo.zip (33.7 KB) 
下载次数: 106 

Spring+Mybatis 多数据源配置相关推荐

  1. spring mybatis 多数据源配置 jeesite 多数据源配置

    spring mybatis 多数据源配置 jeesite 多数据源配置 一.情景描述 在系统数据达到一定的访问量时,遇到单个数据库瓶颈,所以需要扩展数据库,启用第二个数据源资源,项目架构变成 一个服 ...

  2. Spring+Mybatis多数据源配置(一)——MySQL与Oracle通过配置切换

    欢迎支持笔者新作:<深入理解Kafka:核心设计与实践原理>和<RabbitMQ实战指南>,同时欢迎关注笔者的微信公众号:朱小厮的博客. 欢迎跳转到本文的原文链接:https: ...

  3. Spring+Mybatis多数据源配置(三)——Spring如何获取Properties文件的信息

    欢迎支持笔者新作:<深入理解Kafka:核心设计与实践原理>和<RabbitMQ实战指南>,同时欢迎关注笔者的微信公众号:朱小厮的博客. 欢迎跳转到本文的原文链接:https: ...

  4. Spring+MyBatis 多数据源配置和切换

    两台 MySQL 数据库(属于 master-slave 主从关系),基于 Java8,Spring4,MyBatis3.2 环境. maven 依赖配置 <dependencies>&l ...

  5. Spring+Mybatis多数据源配置(四)——AbstractRoutingDataSource实现数据源动态切换

    欢迎支持笔者新作:<深入理解Kafka:核心设计与实践原理>和<RabbitMQ实战指南>,同时欢迎关注笔者的微信公众号:朱小厮的博客. 欢迎跳转到本文的原文链接:https: ...

  6. Spring+Mybatis多数据源配置(二)——databaseIdProvider的使用

    欢迎支持笔者新作:<深入理解Kafka:核心设计与实践原理>和<RabbitMQ实战指南>,同时欢迎关注笔者的微信公众号:朱小厮的博客. 欢迎跳转到本文的原文链接:https: ...

  7. Spring+MyBatis多数据源配置实现

    最近用到了MyBatis配置多数据源,原以为简单配置下就行了,实际操作后发现还是要费些事的,这里记录下,以作备忘 不多废话,直接上代码,后面会有简单的实现介绍 jdbc和log4j的配置 #定义输出格 ...

  8. Spring+Mybatis多数据源配置

    一.配置文件 properties ds1.driverClassName=com.mysql.jdbc.Driver ds1.url=jdbc:mysql://192.168.200.130:330 ...

  9. Spring实现多数据源配置

    一.前言 对于小型项目,服务器与数据库是可以在同一台机子上的,但随着业务的庞大与负责,数据库和服务器就会分离开来.同时随着数据量的增大,数据库也要分开部署到多台机子上. 二.Spring配置文件修改 ...

最新文章

  1. ballgown包进行基因差异表达分析
  2. 龙岗网络推广为SEO优化人员介绍如何合理处理垃圾外链?
  3. 算法练习day4——190321(小和、逆序对、划分、荷兰国旗问题)
  4. cadence IC
  5. Hadoop组件搭建-Hadoop全分布式
  6. android x5webview截长图
  7. 计算机WPS一级教材PDF,2017年计算机一级WPS辅导:金山词霸PDF文档取词攻略
  8. BIGWORLD问题集
  9. JUC笔记-同步器(AQS原理、ReentrantLock原理)
  10. 2021/3/30前端百度笔试题
  11. 【建站笔记】:在wordpress博客文章中插入代码段并高亮显示
  12. 基于单片机的电机转速测量设计
  13. 大型软件开发中的流程与规范
  14. 操作系统题库(选择题部分,带解析)
  15. [快讯]致铭主板促销免费赠送Q版暖水袋
  16. 在内卷如此严重的当下,大二小伙逆流而上,首次参加校招成功拿到网易实习offer
  17. python实践答辩ppt_如何制作优秀的毕业论文答辩 PPT?
  18. Oracle学习教程2
  19. CFA一级学习笔记--权益(三)--订单执行以及有效性
  20. vue2移动端仿淘宝APP省市区街道四级地区选择器

热门文章

  1. 一步一步学动画[1]:Silverlight中Animation的应用
  2. java压缩----使用ANT JDK压缩---解决中文问题
  3. oracle rownum 学习
  4. 新手指南:我应该学哪种编程语言?
  5. 华软oracle,ORACLE 表空间的简单理解
  6. java监控网卡_VC++监控网卡状态
  7. Nacos源码ServiceManager
  8. Nacos服务注册接口
  9. Nginx开启SSL支持实例配置
  10. 通过Nginx简单安装