application-dev.yml 725 B

12345678910111213141516171819202122232425262728293031
  1. server:
  2. port: 8090
  3. spring:
  4. application:
  5. name: environment
  6. datasource:
  7. url: jdbc:mysql://192.168.1.7:3306/huimv_ql_farm?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
  8. username: root
  9. password: hm123456
  10. driver-class-name: com.mysql.cj.jdbc.Driver
  11. jpa:
  12. show-sql: true
  13. database: mysql
  14. hibernate:
  15. ddl-auto: update
  16. database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
  17. open-in-view: true
  18. # redis:
  19. # database: 0
  20. # host: 119.3.84.55
  21. # port: 6379
  22. # password: hm123456
  23. # jedis:
  24. # pool:
  25. # max-active: 20
  26. # max-wait: -1
  27. # max-idle: 10
  28. # min-idle: 0
  29. # timeout: 5000