当前位置:   article > 正文

Mybatis-plus连接多数据源操作(SQLServer、MySQL数据库)_mybatis plus多数据源mysql sqlserver

mybatis plus多数据源mysql sqlserver

Mybatis-plus连接多数据源操作(SQLServer、MySQL数据库)


一、依赖

        <!--mybatis多数据源-->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
            <version>2.5.6</version>
        </dependency>
        <!--druid-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.2.8</version>
        </dependency>
        <!--SQL Server JDBC驱动-->
        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>sqljdbc4</artifactId>
            <version>4.0</version>
        </dependency>
        <!--jdbc-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <!--mysql-->
        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- mybatis plus  -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.5.1</version>
        </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

二、yml配置文件

server:
  port: 8888

spring:
  main:
    allow-circular-references: true
  datasource:
    dynamic:
      primary: mysql_localhost #配置主数据源
      datasource:
        mysql_localhost: # 数据源的名字,第二个数据源
          url: jdbc:mysql://127.0.0.1:3306/library?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&allowMultiQueries=true
          username: xxx
          password: xxxxxxxx
          driver-class-name: com.mysql.cj.jdbc.Driver
        sql_server_bbj: # 数据源的名字,第二个数据源
          url: jdbc:sqlserver://127.0.0.1:1433;databaseName=test
          username: xxxx
          password: xxxxxx
          driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
          #一定要加上,否则连接sqlserver不成功
          druid:
            validation-query: SELECT 1
      druid:
        initial-size: 1
        max-active: 20
        min-idle: 1
        max-wait: 60000



#整合mybatis
mybatis-plus:
  #别名设置
  type-aliases-package: com.juyi.juyidockingplatform.entity.*
  #设置xml文件mapper的位置  classpath:代表的是resources
  mapper-locations: classpath:/mapper/*.xml
  # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

三、业务类

@Service
@DS("sql_server_bbj")
public class HagCar01ServiceImpl extends ServiceImpl<HagCar01Mapper, HagCar01> implements HagCar01Service {

}
  • 1
  • 2
  • 3
  • 4
  • 5

四、测试

@SpringBootTest
class JuyiDockingPlatformApplicationTests {

    @Autowired
    private BookBaseService bookBaseService;

    @Test
    void contextLoads2() {
        System.out.println(hagCar01Service.list());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述

  • 勇敢面对逆境,不屈不挠地迎接每一个挑战。
  • 奋斗的过程充满坎坷,但只有坚持才能看到绚烂的彩虹。
  • 每一次的努力都是种子,坚持不懈就能长成参天大树。
  • 不管前方有多远,只要心中有火,终会找到前行的路。
  • 希望并非遥不可及,而是在奋斗的路上闪烁着光芒。
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号