zoukankan      html  css  js  c++  java
  • Spring Boot MyBatis配置多种数据库

    mybatis-config.xml是支持配置多种数据库的,本文将介绍在Spring Boot中使用配置类来配置。

    1. 配置application.yml

    # mybatis配置
    mybatis:
      check-config-location: false
      type-aliases-package: ${base.package}.model
      configuration:
        map-underscore-to-camel-case: true
        # 二级缓存的总开关
        cache-enabled: false
      mapper-locations: classpath:mapping/*.xml

    2. 新增数据源配置类

  • 相关阅读:
    Python中__new__()方法的使用和实例化
    python __str__ , __repr__区别
    python中%r和%s的区别
    面向对象进阶
    getattr(sys.modules[__name__], func_name)
    os.path.dirname(__file__)使用
    bound和unbound方法,类的绑定和非绑定是什么
    基于python中staticmethod和classmethod的区别(详解)
    python基础----特性(property)、静态方法(staticmethod)、类方法(classmethod)、__str__的用法
    python @classmethod 的使用场合
  • 原文地址:https://www.cnblogs.com/jpfss/p/11242716.html
Copyright © 2011-2022 走看看