| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | server:  port: 8081spring:  application:    name: admin  jackson:    date-format: yyyy-MM-dd HH:mm:ss    time-zone: GMT+8  cloud:    nacos:      config:        server-addr: 192.168.101.104:8848        file-extension: yaml        namespace: fire      discovery:        server-addr: 192.168.101.104:8848        namespace: fire        service: admin  datasource:    username: root    password: 123456    driver-class-name: com.mysql.cj.jdbc.Driver    url: jdbc:mysql://192.168.101.21:4000/fmp?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai    hikari:      minimum-idle: 5      maximum-pool-size: 15      connection-test-query: SELECT 1      max-lifetime: 1600000      connection-timeout: 30000      pool-name: DatebookHikariCP  redis:    cluster:      nodes: 192.168.101.101:7001,192.168.101.101:7002,192.168.101.101:7003#    host: 192.168.101.100#    port: 11670jwt:  header: Authorization  tokenHead: Bearermybatis-plus:  configuration:    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl  global-config:    db-config:      logic-delete-field: delFlag  mapper-locations: classpath:mapper/*.xml  typeAliasesPackage: com.fire.dto.system
 |