| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | server:  port: 8902  address: 0.0.0.0spring:  profiles:    active: prod #local prod  application:    name: yujing-hook-load-warning  security:    user:      name: admin      password: YujingHoolLoad@2025      roles: ADMIN  mvc:    static-path-pattern: /**    jackson:      time-zone: GMT+8      date-format: "yyyy-MM-dd HH:mm:ss"  redis:    database: 0    host: localhost    lettuce:      pool:        max-active: -1   #最大连接数据库连接数,设 -1 为没有限制        max-idle: 0     #最大等待连接中的数量,设 0 为没有限制        max-wait: -1ms  #最大建立连接等待时间。如果超过此时间将接到异常。设为-1表示无限制。        min-idle: 0     #最小等待连接中的数量,设 0 为没有限制      shutdown-timeout: 1000ms    password: #YjCjfuwu@2025 #123    port: 6379logging:  config: classpath:logback.xmlmybatis-plus:  configuration:    map-underscore-to-camel-case: true    auto-mapping-behavior: full    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl  mapper-locations: classpath*:mapper/**/*Mapper.xml  global-config:    # 逻辑删除配置    db-config:      # 删除前      logic-not-delete-value: 1      # 删除后      logic-delete-value: 0
 |