application.yaml 705 B

1234567891011121314151617181920212223242526272829
  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=UTC
  7. username: root
  8. password: hsp
  9. mvc:
  10. pathmatch:
  11. matching-strategy: ant_path_matcher
  12. redis:
  13. database: 12
  14. host: anyi.space
  15. port: 7000
  16. password: yangyi
  17. server:
  18. port: 8080
  19. servlet:
  20. context-path: /
  21. mybatis-plus:
  22. global-config:
  23. db-config:
  24. logic-delete-field: deleteFlag
  25. logic-delete-value: 1
  26. logic-not-delete-value: 0
  27. configuration:
  28. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  29. mapper-locations: classpath:/mapper/*.xml