svr-address.yml 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. data-source:
  2. driver-class-name: com.mysql.jdbc.Driver
  3. initialize-size: 1
  4. max-total: 20
  5. max-idle: 10
  6. min-idle: 1
  7. validation-query: SELECT 1
  8. test-on-borrow: true
  9. remove-abandoned-timeout: 55
  10. hibernate:
  11. dialect: org.hibernate.dialect.MySQL5Dialect
  12. ---
  13. spring:
  14. profiles: dev
  15. data-source:
  16. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  17. user-name: ha
  18. password: ha
  19. hibernate:
  20. show-sql: true
  21. format-sql: true
  22. ---
  23. spring:
  24. profiles: test
  25. data-source:
  26. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  27. username: fujian
  28. password: fujian
  29. hibernate:
  30. hibernate-properties:
  31. hibernate:
  32. show-sql: true
  33. format-sql: true
  34. ---
  35. spring:
  36. profiles: prod
  37. data-source:
  38. url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  39. username: ha
  40. password: jkzlxm
  41. hibernate:
  42. hibernate-properties:
  43. hibernate:
  44. show-sql: false
  45. format-sql: false