application.yml 813 字节
server:
  port: 8888
  servlet:
    context-path: /skreceive
# 应用服务 WEB 访问端口
spring:
  datasource:
    druid:
      driver-class-name: com.mysql.jdbc.Driver
#      url: jdbc:mysql://115.28.25.233:6630/zhsw-bkyh?characterEncoding=UTF-8&useUnicode=true&useSSL=false
#      username: jk_test
#      password: Jk_test1211rw
      url: jdbc:mysql://127.0.0.1:13306/zhsw-bkyh?characterEncoding=UTF-8&useUnicode=true&useSSL=false
      username: root
      password: bkyh925.

  redis:
    port: 6379
    host: 127.0.0.1
    # host: redis

mybatis-plus:
  mapper-locations: classpath*:com/jkdata/mapper/xml/*Mapper.xml
  global-config:
    db-config:
      #使用数据库的自增策略
      id-type: auto
  configuration:
    # 开启日志
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl