hos-ag-eip.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. security:
  2. basic:
  3. enabled: false
  4. hystrix:
  5. command:
  6. default:
  7. execution:
  8. # timeout:
  9. # enabled: false
  10. isolation:
  11. thread:
  12. timeoutInMilliseconds: 30000
  13. ---
  14. spring:
  15. profiles: dev
  16. datasource:
  17. driverClassName: com.mysql.jdbc.Driver
  18. url: jdbc:mysql://192.168.1.220:3306/xmehr?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  19. username: xmehr
  20. password: xmehr
  21. test-on-borrow: true
  22. validation-query: SELECT 1
  23. test-while-idle: true
  24. max-total: 100
  25. default-auto-commit: true
  26. max-idle: 50
  27. min-idle: 20
  28. initial-size: 10
  29. jpa:
  30. database-platform: org.hibernate.dialect.MySQL5Dialect
  31. hibernate:
  32. dialect: org.hibernate.dialect.MySQL5Dialect
  33. format-sql: true
  34. show-sql: false
  35. data:
  36. mongodb:
  37. host: 172.19.103.57
  38. port: 27017
  39. username: esb
  40. password: esb
  41. authenticationDatabase: admin
  42. gridFsDatabase: dfs
  43. database: runtime
  44. aop:
  45. proxy-target-class: true
  46. ---
  47. spring:
  48. profiles: test
  49. jackson:
  50. serialization:
  51. INDENT_OUTPUT: true
  52. datasource:
  53. driverClassName: com.mysql.jdbc.Driver
  54. url: jdbc:mysql://172.19.103.42:8066/global_db?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true
  55. username: hos
  56. password: 123456
  57. test-on-borrow: true
  58. validation-query: SELECT 1
  59. test-while-idle: true
  60. max-total: 100
  61. default-auto-commit: true
  62. max-idle: 50
  63. min-idle: 20
  64. initial-size: 10
  65. jpa:
  66. database-platform: org.hibernate.dialect.MySQL5Dialect
  67. hibernate:
  68. dialect: org.hibernate.dialect.MySQL5Dialect
  69. format-sql: true
  70. show-sql: false
  71. data:
  72. mongodb:
  73. host: 172.19.103.42
  74. port: 27017
  75. username: esb
  76. password: esb
  77. authenticationDatabase: admin
  78. gridFsDatabase: dfs
  79. database: runtime
  80. aop:
  81. proxy-target-class: true