application.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. server:
  2. port: 10420
  3. info:
  4. app:
  5. name: SVR-INSPECTION
  6. description: EHR Platform Microservice.
  7. version: 1.0.0
  8. spring:
  9. datasource:
  10. driver-class-name: com.mysql.jdbc.Driver
  11. max-active: 20
  12. max-idle: 8
  13. min-idle: 8
  14. validation-query: SELECT 1
  15. test-on-borrow: true
  16. ---
  17. spring:
  18. profiles: dev
  19. datasource:
  20. <<<<<<< HEAD
  21. url: jdbc:mysql://172.18.20.105:3312/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  22. username: cloud
  23. password: o8t$P39ekYSZ
  24. =======
  25. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  26. username: chenweishan
  27. password: chenweishan
  28. data:
  29. solr:
  30. zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
  31. ---
  32. spring:
  33. profiles: test
  34. datasource:
  35. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  36. username: chenweishan
  37. password: chenweishan
  38. data:
  39. solr:
  40. zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
  41. ---
  42. spring:
  43. profiles: prod
  44. datasource:
  45. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
  46. username: chenweishan
  47. password: chenweishan
  48. data:
  49. solr:
  50. zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
  51. >>>>>>> master