svr-internet-hospital.yml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. #通用的配置不用区分环境变量
  2. server:
  3. port: ${server.svr-internet-hospital-port}
  4. spring:
  5. aop:
  6. proxy-target-class: true
  7. datasource:
  8. max-active: 200
  9. max-idle: 200 #最大空闲连接
  10. min-idle: 10 #最小空闲连接
  11. validation-query-timeout: 20
  12. log-validation-errors: true
  13. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  14. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  15. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  16. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  17. idle-timeout: 20000
  18. connection-test-query: SELECT 1
  19. num-tests-per-eviction-run: 200 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  20. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  21. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  22. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  23. http:
  24. multipart:
  25. max-file-size: 30MB
  26. # location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
  27. # resolve-lazily: true
  28. redis:
  29. database: 0 # Database index used by the connection factory.
  30. password: # Login password of the redis server.
  31. timeout: 120000 # 连接超时时间(毫秒) 60秒
  32. pool:
  33. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  34. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  35. max-idle: 20 # 连接池中的最大空闲连接
  36. min-idle: 5 # 连接池中的最小空闲连接
  37. mail:
  38. default-encoding: UTF-8
  39. #端口
  40. port: 25
  41. #协议
  42. protocol: smtp
  43. properties.mail.smtp.auth: true
  44. properties.mail.smtp.starttls.enable: true
  45. properties.mail.smtp.starttls.required: true
  46. host: smtp.163.com
  47. #发送者的邮箱密码
  48. password: xmijk181016jkzl
  49. #发送者的邮箱账号
  50. username: i_jiankang@163.com
  51. es:
  52. index:
  53. servicePackLog: base_service_package_log
  54. type:
  55. servicePackLog: base_service_package_log
  56. fast-dfs:
  57. connect-timeout: 2 #链接超时时间
  58. network-timeout: 30
  59. charset: ISO8859-1 #编码
  60. http:
  61. tracker-http-port: 80
  62. anti-steal-token: no
  63. secret-key: FastDFS1234567890
  64. pool: #连接池大小
  65. init-size: 5
  66. max-size: 20
  67. wait-time: 500
  68. configDefault: # 默认配置
  69. saasId: xmjkzl_saasId
  70. express:
  71. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  72. sf_code: JKZL
  73. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  74. ---
  75. spring:
  76. profiles: jwdev
  77. datasource:
  78. driver-class-name: com.mysql.jdbc.Driver
  79. url: jdbc:mysql://172.26.0.114/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  80. username: root
  81. password: jkzlehr
  82. elasticsearch:
  83. cluster-name: jkzl #集群名 默认elasticsearch
  84. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  85. client-transport-sniff: false
  86. jest:
  87. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  88. connection-timeout: 60000 # Connection timeout in milliseconds.
  89. multi-threaded: true # Enable connection requests from multiple execution threads.
  90. activemq:
  91. broker-url: tcp://172.26.0.116:61616
  92. user: admin
  93. password: admin
  94. redis:
  95. host: 172.26.0.253 # Redis server host.
  96. port: 6379 # Redis server port.
  97. # password: jkzl_ehr
  98. # zipkin:
  99. # base-url: http://localhost:9411 #日志追踪的地址
  100. fastDFS:
  101. fastdfs_file_url: http://172.26.0.110:8888/
  102. fast-dfs:
  103. tracker-server: 172.26.0.110:22122 #服务器地址
  104. # 短信发送地址
  105. jw:
  106. smsUrl: http://svr-base:10020/sms_gateway/send
  107. myFamily:
  108. qrCodeFailurTime: 2
  109. wechat:
  110. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  111. # 短信验证码发送的客户端标识,居民端
  112. sms:
  113. clientId: EwC0iRSrcP
  114. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  115. demo:
  116. flag: true
  117. hospital:
  118. url: https://wx.xmzsh.com
  119. mqUser: JKZL
  120. mqPwd: 123456
  121. SourceSysCode: S60
  122. TargetSysCode: S01
  123. im:
  124. im_list_get: http://172.26.0.105:3000/
  125. data_base_name: im_internet_hospital
  126. # 上传文件临时路径配置
  127. FileTempPath:
  128. upload_temp_path : /var/local/temp
  129. image_path : /var/local/upload/images
  130. voice_path : /var/local/upload/voice
  131. chat_file_path : /var/local/upload/chat
  132. es:
  133. pwflag: 1 # 1需要密码,0不需要密码
  134. index:
  135. Statistics: hlw_quota_test
  136. type:
  137. Statistics: hlw_quota_test
  138. host: http://172.26.0.112:9200
  139. tHost: 172.26.0.112:9300
  140. clusterName: jkzl
  141. securityUser: lion:jkzlehr
  142. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  143. testPattern:
  144. sign: 0
  145. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  146. wlyy:
  147. url: http://www.xmtyw.cn/wlyytest/
  148. ---
  149. spring:
  150. profiles: jwtest
  151. datasource:
  152. driver-class-name: com.mysql.jdbc.Driver
  153. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  154. username: ssgg
  155. password: ssgg@jkzl2019
  156. elasticsearch:
  157. cluster-name: jkzl #集群名 默认elasticsearch
  158. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  159. client-transport-sniff: false
  160. jest:
  161. uris: http://192.0.33.26:9300
  162. connection-timeout: 60000 # Connection timeout in milliseconds.
  163. multi-threaded: true # Enable connection requests from multiple execution threads.
  164. activemq:
  165. broker-url: tcp://59.61.92.90:9103
  166. user: jkzl
  167. password: jkzlehr
  168. redis:
  169. host: 192.0.33.26 # Redis server host.
  170. port: 6390 # Redis server port.
  171. password: Kb6wKDQP1W4
  172. fastDFS:
  173. fastdfs_file_url: http://192.0.33.26:8888/
  174. fast-dfs:
  175. tracker-server: 192.0.33.26:22122 #服务器地址
  176. wechat:
  177. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  178. # 短信验证码发送的客户端标识,居民端
  179. sms:
  180. clientId: EwC0iRSrcP #todo 待配置
  181. myFamily:
  182. qrCodeFailurTime: 2
  183. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  184. demo:
  185. flag: false
  186. hospital:
  187. url: https://wx.xmzsh.com
  188. mqUser: JKZL
  189. mqPwd: 123456
  190. SourceSysCode: S60
  191. TargetSysCode: S01
  192. im:
  193. im_list_get: http://192.0.33.103:3000/
  194. data_base_name: im
  195. # 上传文件临时路径配置
  196. FileTempPath:
  197. upload_temp_path : /var/local/temp
  198. image_path : /var/local/upload/images
  199. voice_path : /var/local/upload/voice
  200. chat_file_path : /var/local/upload/chat
  201. es:
  202. pwflag: 1 # 1需要密码,0不需要密码
  203. index:
  204. Statistics: hlw_quota_test
  205. type:
  206. Statistics: hlw_quota_test
  207. host: http://172.26.0.112:9200
  208. tHost: 172.26.0.112:9300
  209. clusterName: jkzl
  210. securityUser: lion:jkzlehr
  211. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  212. testPattern:
  213. sign: 0
  214. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  215. wlyy:
  216. url: http://www.xmtyw.cn/wlyytest/
  217. ---
  218. spring:
  219. profiles: qytest
  220. datasource:
  221. driver-class-name: com.mysql.jdbc.Driver
  222. url: jdbc:mysql://172.26.0.54/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  223. username: root
  224. password: jkzlehr
  225. elasticsearch:
  226. cluster-name: jkzl #集群名 默认elasticsearch
  227. cluster-nodes: 172.26.0.55:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  228. client-transport-sniff: false
  229. jest:
  230. uris: http://172.26.0.55:9300
  231. connection-timeout: 60000 # Connection timeout in milliseconds.
  232. multi-threaded: true # Enable connection requests from multiple execution threads.
  233. activemq:
  234. broker-url: tcp://59.61.92.90:9103
  235. user: jkzl
  236. password: jkzlehr
  237. redis:
  238. host: 172.26.0.53 # Redis server host.
  239. port: 6379 # Redis server port.
  240. password: Kb6wKDQP1W4
  241. fastDFS:
  242. fastdfs_file_url: http://172.26.0.53:8888/
  243. fast-dfs:
  244. tracker-server: 172.26.0.53:22122 #服务器地址
  245. wechat:
  246. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  247. # 短信验证码发送的客户端标识,居民端
  248. sms:
  249. clientId: EwC0iRSrcP #todo 待配置
  250. myFamily:
  251. qrCodeFailurTime: 2
  252. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  253. demo:
  254. flag: false
  255. hospital:
  256. url: https://wx.xmzsh.com
  257. mqUser: JKZL
  258. mqPwd: 123456
  259. SourceSysCode: S60
  260. TargetSysCode: S01
  261. im:
  262. im_list_get: http://192.0.33.103:3000/
  263. data_base_name: im
  264. # 上传文件临时路径配置
  265. FileTempPath:
  266. upload_temp_path : /var/local/temp
  267. image_path : /var/local/upload/images
  268. voice_path : /var/local/upload/voice
  269. chat_file_path : /var/local/upload/chat
  270. es:
  271. pwflag: 1 # 1需要密码,0不需要密码
  272. index:
  273. Statistics: hlw_quota_test
  274. type:
  275. Statistics: hlw_quota_test
  276. host: http://172.26.0.55:9200
  277. tHost: 172.26.0.55:9300
  278. clusterName: jkzl
  279. securityUser: lion:jkzlehr
  280. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  281. testPattern:
  282. sign: 0
  283. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  284. wlyy:
  285. url: http://www.xmtyw.cn/wlyytest/
  286. ---
  287. spring:
  288. profiles: jwprod
  289. datasource:
  290. driver-class-name: com.mysql.jdbc.Driver
  291. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  292. username: im
  293. password: 2oEq3Kf7
  294. elasticsearch:
  295. cluster-name: jkzl #集群名 默认elasticsearch
  296. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  297. client-transport-sniff: false
  298. jest:
  299. uris: http://192.0.33.26:9300
  300. connection-timeout: 60000 # Connection timeout in milliseconds.
  301. multi-threaded: true # Enable connection requests from multiple execution threads.
  302. activemq:
  303. broker-url: tcp://59.61.92.90:9103
  304. user: jkzl
  305. password: jkzlehr
  306. redis:
  307. host: 192.0.33.26 # Redis server host.
  308. port: 6390 # Redis server port.
  309. password: Kb6wKDQP1W4
  310. fastDFS:
  311. fastdfs_file_url: http://192.0.33.26:8888/
  312. fast-dfs:
  313. tracker-server: 192.0.33.26:22122 #服务器地址
  314. wechat:
  315. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  316. # 短信验证码发送的客户端标识,居民端
  317. sms:
  318. clientId: EwC0iRSrcP #todo 待配置
  319. myFamily:
  320. qrCodeFailurTime: 2
  321. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  322. demo:
  323. flag: false
  324. hospital:
  325. url: https://wx.xmzsh.com
  326. mqUser: JKZL
  327. mqPwd: 123456
  328. SourceSysCode: S60
  329. TargetSysCode: S01
  330. im:
  331. im_list_get: http://172.16.1.42:3000/
  332. data_base_name: im
  333. # 上传文件临时路径配置
  334. FileTempPath:
  335. upload_temp_path : /var/local/temp
  336. image_path : /var/local/upload/images
  337. voice_path : /var/local/upload/voice
  338. chat_file_path : /var/local/upload/chat
  339. es:
  340. pwflag: 1 # 1需要密码,0不需要密码
  341. index:
  342. Statistics: hlw_quota_test
  343. type:
  344. Statistics: hlw_quota_test
  345. host: http://172.26.0.112:9200
  346. tHost: 172.26.0.112:9300
  347. clusterName: jkzl
  348. securityUser: lion:jkzlehr
  349. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  350. testPattern:
  351. sign: 0
  352. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  353. wlyy:
  354. url: http://www.xmtyw.cn/wlyytest/
  355. ---
  356. spring:
  357. profiles: jwOracleTest
  358. datasource:
  359. driver-class-name: oracle.jdbc.driver.OracleDriver
  360. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  361. username: normal
  362. password: normal
  363. jpa:
  364. properties:
  365. hibernate:
  366. dialect: org.hibernate.dialect.Oracle10gDialect
  367. show_sql: true
  368. database: oracle
  369. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  370. # username: root
  371. # password: 123456
  372. elasticsearch:
  373. cluster-name: jkzl #集群名 默认elasticsearch
  374. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  375. client-transport-sniff: false
  376. jest:
  377. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  378. connection-timeout: 60000 # Connection timeout in milliseconds.
  379. multi-threaded: true # Enable connection requests from multiple execution threads.
  380. activemq:
  381. broker-url: tcp://172.26.0.116:61616
  382. user: admin
  383. password: admin
  384. redis:
  385. host: 172.26.0.253 # Redis server host.
  386. port: 6379 # Redis server port.
  387. fastDFS:
  388. fastdfs_file_url: http://172.26.0.110:8888/
  389. fast-dfs:
  390. tracker-server: 172.26.0.110:22122 #服务器地址
  391. wechat:
  392. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  393. # 短信验证码发送的客户端标识,居民端
  394. sms:
  395. clientId: EwC0iRSrcP
  396. myFamily:
  397. qrCodeFailurTime: 2
  398. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  399. demo:
  400. flag: true
  401. hospital:
  402. url: https://wx.xmzsh.com
  403. mqUser: JKZL
  404. mqPwd: 123456
  405. SourceSysCode: S60
  406. TargetSysCode: S01
  407. im:
  408. im_list_get: http://172.26.0.105:3000/
  409. data_base_name: im_internet_hospital
  410. # 上传文件临时路径配置
  411. FileTempPath:
  412. upload_temp_path : /var/local/temp
  413. image_path : /var/local/upload/images
  414. voice_path : /var/local/upload/voice
  415. chat_file_path : /var/local/upload/chat
  416. es:
  417. pwflag: 1 # 1需要密码,0不需要密码
  418. index:
  419. Statistics: hlw_quota_test
  420. type:
  421. Statistics: hlw_quota_test
  422. host: http://172.26.0.112:9200
  423. tHost: 172.26.0.112:9300
  424. clusterName: jkzl
  425. securityUser: lion:jkzlehr
  426. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  427. testPattern:
  428. sign: 0
  429. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  430. wlyy:
  431. url: http://www.xmtyw.cn/wlyytest/
  432. ---
  433. spring:
  434. profiles: jwOracleProd
  435. ## ==眼科医院 数据库========================================================================
  436. datasource:
  437. driver-class-name: oracle.jdbc.driver.OracleDriver
  438. url: jdbc:oracle:thin:@10.10.10.16:1521/rac
  439. username: HLWYY
  440. password: Xmykzxhlwyy963
  441. jpa:
  442. properties:
  443. hibernate:
  444. dialect: org.hibernate.dialect.Oracle10gDialect
  445. show_sql: true
  446. database: oracle
  447. elasticsearch:
  448. cluster-name: jkzl #集群名 默认elasticsearch
  449. cluster-nodes: 192.168.33.198:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  450. client-transport-sniff: false
  451. jest:
  452. uris: http://192.168.33.198:9200
  453. connection-timeout: 60000 # Connection timeout in milliseconds.
  454. multi-threaded: true # Enable connection requests from multiple execution threads.
  455. activemq:
  456. broker-url: tcp://172.26.0.116:61616
  457. user: admin
  458. password: admin
  459. redis:
  460. host: 192.168.33.198 # Redis server host.
  461. port: 6380 # Redis server port.
  462. password: Kb6wKDQP1W4
  463. fastDFS:
  464. fastdfs_file_url: http://192.168.33.198:8888/
  465. fast-dfs:
  466. tracker-server: 192.168.33.198:22122 #服务器地址
  467. wechat:
  468. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  469. # 短信验证码发送的客户端标识,居民端
  470. sms:
  471. clientId: EwC0iRSrcP
  472. myFamily:
  473. qrCodeFailurTime: 2
  474. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  475. demo:
  476. flag: true
  477. hospital:
  478. url: https://wx.xmzsh.com
  479. mqUser: JKZL
  480. mqPwd: 123456
  481. SourceSysCode: S60
  482. TargetSysCode: S01
  483. im:
  484. im_list_get: http://172.26.0.105:3000/
  485. data_base_name: im_internet_hospital
  486. # 上传文件临时路径配置
  487. FileTempPath:
  488. upload_temp_path : /var/local/temp
  489. image_path : /var/local/upload/images
  490. voice_path : /var/local/upload/voice
  491. chat_file_path : /var/local/upload/chat
  492. es:
  493. pwflag: 1 # 1需要密码,0不需要密码
  494. index:
  495. Statistics: hlw_quota_test
  496. type:
  497. Statistics: hlw_quota_test
  498. host: http://192.168.33.198:9200
  499. tHost: 192.168.33.198:9300
  500. clusterName: jkzl
  501. securityUser: lion:jkzlehr
  502. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  503. testPattern:
  504. sign: 0
  505. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  506. wlyy:
  507. url: http://www.xmtyw.cn/wlyytest/
  508. ##==眼科医院 数据库end=======================================================================
  509. ---
  510. ##==心脏中心 ===============================================================================
  511. spring:
  512. profiles: xzprod
  513. datasource:
  514. driver-class-name: com.mysql.jdbc.Driver
  515. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  516. username: jkzl
  517. password: jkzl@2020
  518. elasticsearch:
  519. cluster-name: jkzl #集群名 默认elasticsearch
  520. cluster-nodes: 172.16.100.240:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  521. client-transport-sniff: false
  522. jest:
  523. uris: http://172.16.100.240:9300
  524. connection-timeout: 60000 # Connection timeout in milliseconds.
  525. multi-threaded: true # Enable connection requests from multiple execution threads.
  526. activemq:
  527. broker-url: tcp://59.61.92.90:9103
  528. user: jkzl
  529. password: jkzlehr
  530. redis:
  531. host: 172.16.100.240 # Redis server host.
  532. port: 6380 # Redis server port.
  533. password: q4YaQemf
  534. fastDFS:
  535. fastdfs_file_url: http://172.16.100.240:8888/
  536. fast-dfs:
  537. tracker-server: 192.168.103.159:22122 #服务器地址
  538. wechat:
  539. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  540. # 短信验证码发送的客户端标识,居民端
  541. sms:
  542. clientId: EwC0iRSrcP #todo 待配置
  543. myFamily:
  544. qrCodeFailurTime: 2
  545. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  546. demo:
  547. flag: false
  548. hospital:
  549. url: https://wx.xmzsh.com
  550. mqUser: JKZL
  551. mqPwd: 123456
  552. SourceSysCode: S60
  553. TargetSysCode: S01
  554. im:
  555. im_list_get: http://172.16.100.65:3000/
  556. data_base_name: im
  557. # 上传文件临时路径配置
  558. FileTempPath:
  559. upload_temp_path : /var/local/temp
  560. image_path : /var/local/upload/images
  561. voice_path : /var/local/upload/voice
  562. chat_file_path : /var/local/upload/chat
  563. es:
  564. pwflag: 1 # 1需要密码,0不需要密码
  565. index:
  566. Statistics: hlw_quota_test
  567. type:
  568. Statistics: hlw_quota_test
  569. host: http://172.16.100.240:9200
  570. tHost: 172.16.100.240:9300
  571. clusterName: jkzl
  572. securityUser: lion:jkzlehr
  573. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  574. testPattern:
  575. sign: 2
  576. remote_inner_url: http://172.16.100.240:10023/open/fileUpload/upload_stream
  577. wlyy:
  578. url: http://www.xmtyw.cn/wlyytest/
  579. ---
  580. ##==厦门卫计委 ===============================================================================
  581. spring:
  582. profiles: xmjwprod
  583. datasource:
  584. driver-class-name: com.mysql.jdbc.Driver
  585. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  586. username: wlyy
  587. password: qY#j2n5O
  588. # elasticsearch:
  589. # cluster-name: jkzl #集群名 默认elasticsearch
  590. # cluster-nodes: 59.61.92.90:9208 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  591. # client-transport-sniff: false
  592. # jest:
  593. # uris: http://59.61.92.90:9209
  594. # connection-timeout: 60000 # Connection timeout in milliseconds.
  595. # multi-threaded: true # Enable connection requests from multiple execution threads.
  596. activemq:
  597. broker-url: tcp://59.61.92.90:9103
  598. user: jkzl
  599. password: jkzlehr
  600. redis:
  601. host: 59.61.92.90 # Redis server host.
  602. port: 9206 # Redis server port.
  603. password: jkzlehr
  604. fastDFS:
  605. fastdfs_file_url: http://192.168.103.159:8888/
  606. fast-dfs:
  607. tracker-server: 192.168.103.159:22122 #服务器地址
  608. wechat:
  609. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  610. # 短信验证码发送的客户端标识,居民端
  611. sms:
  612. clientId: EwC0iRSrcP #todo 待配置
  613. myFamily:
  614. qrCodeFailurTime: 2
  615. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  616. demo:
  617. flag: false
  618. hospital:
  619. url: https://wx.xmzsh.com
  620. mqUser: JKZL
  621. mqPwd: 123456
  622. SourceSysCode: S60
  623. TargetSysCode: S01
  624. im:
  625. im_list_get: http://27.150.190.148:16000/
  626. data_base_name: im
  627. # 上传文件临时路径配置
  628. FileTempPath:
  629. upload_temp_path : /var/local/temp
  630. image_path : /var/local/upload/images
  631. voice_path : /var/local/upload/voice
  632. chat_file_path : /var/local/upload/chat
  633. es:
  634. pwflag: 0 # 1需要密码,0不需要密码
  635. index:
  636. Statistics: hlw_quota_prod
  637. type:
  638. Statistics: hlw_quota_prod
  639. host: http://59.61.92.90:9208
  640. tHost: 59.61.92.90:9209
  641. clusterName: jkzl
  642. securityUser: lion:jkzlehr
  643. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  644. testPattern:
  645. sign: 1
  646. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  647. wlyy:
  648. url: http://www.xmtyw.cn/wlyy/
  649. ---
  650. ##==厦门卫计委 内网===============================================================================
  651. spring:
  652. profiles: xmjwlocal
  653. datasource:
  654. driver-class-name: com.mysql.jdbc.Driver
  655. url: jdbc:mysql://10.95.22.191:3046/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  656. username: wlyy
  657. password: qY#j2n5O
  658. # elasticsearch:
  659. # cluster-name: jkzl #集群名 默认elasticsearch
  660. # cluster-nodes: 59.61.92.90:9208 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  661. # client-transport-sniff: false
  662. # jest:
  663. # uris: http://59.61.92.90:9209
  664. # connection-timeout: 60000 # Connection timeout in milliseconds.
  665. # multi-threaded: true # Enable connection requests from multiple execution threads.
  666. activemq:
  667. broker-url: tcp://59.61.92.90:9103
  668. user: jkzl
  669. password: jkzlehr
  670. redis:
  671. host: 10.95.22.142 # Redis server host.
  672. port: 6380 # Redis server port.
  673. password: jkzlehr
  674. fastDFS:
  675. fastdfs_file_url: http://192.168.103.159:8888/
  676. fast-dfs:
  677. tracker-server: 192.168.103.159:22122 #服务器地址
  678. wechat:
  679. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  680. # 短信验证码发送的客户端标识,居民端
  681. sms:
  682. clientId: EwC0iRSrcP #todo 待配置
  683. myFamily:
  684. qrCodeFailurTime: 2
  685. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  686. demo:
  687. flag: false
  688. hospital:
  689. url: https://wx.xmzsh.com
  690. mqUser: JKZL
  691. mqPwd: 123456
  692. SourceSysCode: S60
  693. TargetSysCode: S01
  694. im:
  695. im_list_get: http://27.150.190.148:16000/
  696. data_base_name: im
  697. # 上传文件临时路径配置
  698. FileTempPath:
  699. upload_temp_path : /var/local/temp
  700. image_path : /var/local/upload/images
  701. voice_path : /var/local/upload/voice
  702. chat_file_path : /var/local/upload/chat
  703. es:
  704. pwflag: 0 # 1需要密码,0不需要密码
  705. index:
  706. Statistics: hlw_quota_prod
  707. type:
  708. Statistics: hlw_quota_prod
  709. host: http://59.61.92.90:9208
  710. tHost: 59.61.92.90:9209
  711. clusterName: jkzl
  712. securityUser: lion:jkzlehr
  713. #是否开启i健康接口 0关闭,1开启
  714. testPattern:
  715. sign: 1
  716. wlyy:
  717. url: http://www.xmtyw.cn/wlyy/