12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 10420
- info:
- app:
- name: SVR-INSPECTION
- description: EHR Platform Microservice.
- version: 1.0.0
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- max-active: 20
- max-idle: 8
- min-idle: 8
- validation-query: SELECT 1
- test-on-borrow: true
- ---
- spring:
- profiles: dev
- datasource:
- <<<<<<< HEAD
- url: jdbc:mysql://172.18.20.105:3312/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: cloud
- password: o8t$P39ekYSZ
- =======
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
- ---
- spring:
- profiles: test
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
- ---
- spring:
- profiles: prod
- datasource:
- url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8&useSSL=false
- username: chenweishan
- password: chenweishan
- data:
- solr:
- zk-host: node1.hde.h3c.com,node2.hde.h3c.com,node3.hde.h3c.com:2181/solr
- >>>>>>> master
|