application.yaml 752 B

12345678910111213141516171819202122232425262728293031
  1. spring:
  2. application:
  3. name: BI
  4. datasource:
  5. driver-class-name: com.mysql.jdbc.Driver
  6. url: jdbc:mysql://localhost:3306/bi?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
  7. username: root
  8. password: hsp
  9. mvc:
  10. pathmatch:
  11. matching-strategy: ant_path_matcher
  12. redis:
  13. database: 0
  14. host: localhost
  15. # host: anyi.space
  16. # port: 7000
  17. port: 6379
  18. # password: yangyi
  19. server:
  20. port: 8888
  21. servlet:
  22. context-path: /
  23. mybatis-plus:
  24. global-config:
  25. db-config:
  26. logic-delete-field: deleteFlag
  27. logic-delete-value: 1
  28. logic-not-delete-value: 0
  29. configuration:
  30. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  31. mapper-locations: classpath:/mapper/*.xml