spring-boot多数据源配置

本文介绍如何在Spring Boot项目中配置多个数据源,包括主数据源和从数据源的配置方法,以及在实际应用中的测试案例。通过YAML文件设定bicap和train两个数据源,并展示了主数据源配置的详细步骤,省略了mapper层的配置,提供了一个controller测试用例。项目源码已上传至GitHub,供读者参考和下载。
摘要由CSDN通过智能技术生成

因为近期业务需求,mysql数据库不在一台服务器上,需要从不同的数据库获取数据,写了一个测试demo

项目路径

yml文件配置,自定义了bicap和train两个数据源

     

spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    bicap:
      type: com.alibaba.druid.pool.DruidDataSource
      driver-class-name: com.mysql.jdbc.Driver
      initialize: true #指定初始化数据源,是否用data.sql来初始化,默认: true
      name: bicap
      url: jdbc:mysql://mysql.web.zz:3306/bicap?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
      username: root
      password: 123456
    train:
      type: com.alibaba.druid.pool.DruidDataSource
      driver-class-name: com.mysql.jdbc.Driver
      initialize: true
      name: train
      url: jdbc:mysql://10.253.50.250:3306/train?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
      username: root
      password: 123456
server:
  port: 8088
  tomcat:
    max-threads: 1000
    max-connections: 2000
    accept-count: 1000
    uri-encoding: utf-8
logging:
  level.com.slh: info
  file: data-source.log

 

主数据源配置

配置类需要对DataSource、DataSourceTransactionManager、SqlSessionFactory 、SqlSessionTemplate四个数据项进行配置;

       

package com.slh.config;

import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
impo
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值