123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #spring:
- # datasource:
- # type: com.alibaba.druid.pool.DruidDataSource
- ################### mybatis-plus配置 ###################
- mybatis-plus:
- mapper-locations: classpath*:mapping/**/*.xml
- # type-aliases-package: com.gxzc.zen.api.bus.mapper,com.gxzc.zen.api.sys.mapper #,com.gxzc.zen.api.useage.mapper
- global-config:
- id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
- db-column-underline: true
- refresh-mapper: true
- logic-delete-value: 0
- logic-not-delete-value: 1
- sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: true #配置的缓存的全局开关
- lazyLoadingEnabled: true #延时加载的开关
- multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
- interceptors: com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
- ################## Alibaba Druid 配置 ##################
- spring:
- datasource:
- druid:
- stat-view-servlet:
- enabled: true
- login-username: root
- login-password: root
- reset-enable: false
- datasource:
- sys:
- name: archives_sys
- url: jdbc:mysql://127.0.0.1:3306/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
- username: root
- password: root
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- validationQuery: SELECT 1
- asyncInit: false # 异步初始化
- filters: log4j,wall,mergeStat
- keepAlive: false
- driver-class-name: com.mysql.jdbc.Driver
- initialize: false #指定初始化数据源,是否用data.sql来初始化,默认: true
- initialSize: 5
- minIdle: 5
- maxActive: 20
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 30000
- bus:
- name: archives_receive
- url: jdbc:mysql://127.0.0.1:3306/archives_rec?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
- username: root
- password: root
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- validationQuery: SELECT 1
- asyncInit: false # 异步初始化
- filters: log4j,wall,mergeStat
- keepAlive: false
- driver-class-name: com.mysql.jdbc.Driver
- initialize: false #指定初始化数据源,是否用data.sql来初始化,默认: true
- initialSize: 5
- minIdle: 5
- maxActive: 20
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 30000
- ##sharding-jdbc
- #sharding:
- # jdbc:
- # datasource:
- # names: ds_sys,ds_rec
- # ds_sys:
- # type: com.alibaba.druid.pool.DruidDataSource
- # driver-class-name: com.mysql.jdbc.Driver
- # url: jdbc:mysql://127.0.0.1:3306/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
- # username: root
- # password: root
- # maxActive: 20
- # ds_rec:
- # type: com.alibaba.druid.pool.DruidDataSource
- # driver-class-name: com.mysql.jdbc.Driver
- # url: jdbc:mysql://127.0.0.1:3306/archives_rec?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
- # username: root
- # password: root
- # maxActive: 20
- # config:
- # sharding:
- # tables:
- # sys_dept:
- # actualDataNodes: 'ds_sys
- # sys_dic:
- # sys_param:
|