server:
  port: 9001
spring:
  application:
    name: authentication
  datasource:
    dynamic:
      primary: yipeng_auth # 设置主数据源为 yipeng_auth
      p6spy: false # 是否启用 P6Spy 进行 SQL 监控，默认为 false
      strict: false  # 是否严格匹配数据源，默认为 false
      datasource:
        yipeng_auth:
          url: jdbc:mysql://127.0.0.1:3306/yipeng_auth_dev?useUnicode=true&autoReconnect=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai&useSSL=false&zeroDateTimeBehavior=CONVERT_TO_NULL
          username: root
          password: password
          driver-class-name: com.mysql.cj.jdbc.Driver

      
kp:
  project-name: 鉴权项目 # 项目名称
  mq:
    interface-consume-num: 50 #接口记录日志 消费条数（多少条入一次数据库） 默认 100
    http-consume-num: 5 # http记录日志 消费条数（多少条入一次数据库） 默认 20
