123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- mybatis-plus:
- mapper-locations: classpath*:mapping/**/*.xml
- global-config:
- id-type: 0
- 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
- 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
- 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
- initialSize: 5
- minIdle: 5
- maxActive: 20
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 30000
|