svr-org.yml 1022 B

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