application.yml 829 B

123456789101112131415161718192021222324252627282930313233
  1. server:
  2. port: 20227
  3. spring:
  4. application:
  5. name: lift-business-service
  6. profiles:
  7. active: dev
  8. datasource:
  9. url: jdbc:mysql://132.232.206.88:3306/rdsliftmanager?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC
  10. username: root
  11. password: ms.c88pocY/
  12. #redis缓存配置
  13. redis:
  14. database: 0 #数据库索引,默认为0
  15. host: 132.232.206.88 #服务器地址
  16. port: 6379 #端口
  17. password: mdx12358 #验证密码
  18. jedis:
  19. pool:
  20. max-active: 8 #最大连接数
  21. max-idle: 8 #最大空闲链接
  22. max-wait: 20000ms
  23. min-idle: 0
  24. #自动添加createTime、isDelete 等字段
  25. xwy:
  26. mybatis:
  27. audit:
  28. enabled: true
  29. mybatis-plus:
  30. mapper-locations: classpath*:/mapper/**/**Mapper.xml