application-dev.yml 842 B

123456789101112131415161718192021222324252627282930313233343536
  1. server:
  2. port: 8201
  3. spring:
  4. datasource:
  5. url: jdbc:mysql://192.168.1.7:3306/huimv-video_db?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
  6. username: root
  7. password: hm123456
  8. driver-class-name: com.mysql.cj.jdbc.Driver
  9. jpa:
  10. hibernate:
  11. ddl-auto: update #validate
  12. database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
  13. show-sql: true
  14. servlet:
  15. multipart:
  16. max-file-size: 100MB
  17. max-request-size: 1000MB
  18. mvc:
  19. view:
  20. prefix: /
  21. suffix: .html
  22. main:
  23. allow-bean-definition-overriding: true
  24. # redis:
  25. # database: 0
  26. # host: 124.71.192.190
  27. # port: 6379
  28. # password: hm123456
  29. # jedis:
  30. # pool:
  31. # max-active: 20
  32. # max-wait: -1
  33. # max-idle: 10
  34. # min-idle: 0
  35. # timeout: 5000