svr-user.yml 1.0 KB

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