application.yml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  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. es:
  127. pwflag: 1 # 1需要密码,2不需要密码
  128. index:
  129. Statistics: hlw_quota_test
  130. type:
  131. Statistics: hlw_quota_test
  132. host: http://172.26.0.112:9200
  133. tHost: 172.26.0.112:9300
  134. clusterName: jkzl
  135. securityUser: elastic:elastic
  136. # 上传文件临时路径配置
  137. FileTempPath:
  138. upload_temp_path : /var/local/temp
  139. image_path : /var/local/upload/images
  140. voice_path : /var/local/upload/voice
  141. chat_file_path : /var/local/upload/chat
  142. qywx:
  143. url: 2
  144. id: 2
  145. ---
  146. spring:
  147. profiles: jwtest
  148. datasource:
  149. driver-class-name: com.mysql.jdbc.Driver
  150. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  151. username: ssgg
  152. password: ssgg@jkzl2019
  153. # elasticsearch:
  154. # cluster-name: jkzl #集群名 默认elasticsearch
  155. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  156. # client-transport-sniff: false
  157. # jest:
  158. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  159. # connection-timeout: 60000 # Connection timeout in milliseconds.
  160. # multi-threaded: true # Enable connection requests from multiple execution threads.
  161. activemq:
  162. broker-url: tcp://172.26.0.116:61616
  163. user: admin
  164. password: admin
  165. redis:
  166. host: 172.26.0.253 # Redis server host.
  167. port: 6379 # Redis server port.
  168. fastDFS:
  169. fastdfs_file_url: http://172.26.0.110:8888/
  170. fast-dfs:
  171. tracker-server: 172.26.0.110:22122 #服务器地址
  172. wechat:
  173. id: xm_test_ihealth_wx # base库中,wx_wechat 的id字段
  174. # 短信验证码发送的客户端标识,居民端
  175. sms:
  176. clientId: EwC0iRSrcP
  177. myFamily:
  178. qrCodeFailurTime: 2
  179. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  180. demo:
  181. flag: true
  182. hospital:
  183. url: https://wx.xmzsh.com
  184. mqUser: JKZL
  185. mqPwd: 123456
  186. SourceSysCode: S60
  187. TargetSysCode: S01
  188. im:
  189. im_list_get: http://172.26.0.105:3000/
  190. data_base_name: im_internet_hospital
  191. es:
  192. pwflag: 1 # 1需要密码,2不需要密码
  193. index:
  194. Statistics: hlw_quota_test
  195. type:
  196. Statistics: hlw_quota_test
  197. host: http://172.26.0.55:9200
  198. tHost: 172.26.0.55:9300
  199. clusterName: jkzl
  200. securityUser: elastic:changeme
  201. # 上传文件临时路径配置
  202. FileTempPath:
  203. upload_temp_path : /var/local/temp
  204. image_path : /var/local/upload/images
  205. voice_path : /var/local/upload/voice
  206. chat_file_path : /var/local/upload/chat
  207. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  208. testPattern:
  209. sign: 0
  210. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  211. wlyy:
  212. url: http://ehr.yihu.com/wlyy/
  213. qywx:
  214. url: 2
  215. id: 1
  216. ---
  217. spring:
  218. profiles: jwprod
  219. datasource:
  220. driver-class-name: com.mysql.jdbc.Driver
  221. url: jdbc:mysql://172.16.1.42:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  222. username: im
  223. password: 2oEq3Kf7
  224. # elasticsearch:
  225. # cluster-name: jkzl #集群名 默认elasticsearch
  226. # cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  227. # client-transport-sniff: false
  228. # jest:
  229. # uris: http://192.0.33.26:9300
  230. # connection-timeout: 60000 # Connection timeout in milliseconds.
  231. # multi-threaded: true # Enable connection requests from multiple execution threads.
  232. activemq:
  233. broker-url: tcp://59.61.92.90:9103
  234. user: jkzl
  235. password: jkzlehr
  236. redis:
  237. host: 192.0.33.26 # Redis server host.
  238. port: 6390 # Redis server port.
  239. password: Kb6wKDQP1W4
  240. fastDFS:
  241. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  242. fast-dfs:
  243. tracker-server: 192.0.33.26:22122 #服务器地址
  244. wechat:
  245. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  246. # 短信验证码发送的客户端标识,居民端
  247. sms:
  248. clientId: EwC0iRSrcP #todo 待配置
  249. myFamily:
  250. qrCodeFailurTime: 2
  251. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  252. demo:
  253. flag: true
  254. hospital:
  255. url: https://wx.xmzsh.com
  256. mqUser: JKZL
  257. mqPwd: 123456
  258. SourceSysCode: S60
  259. TargetSysCode: S01
  260. im:
  261. im_list_get: http://172.16.1.42:3000/
  262. data_base_name: im
  263. es:
  264. pwflag: 1 # 1需要密码,2不需要密码
  265. index:
  266. Statistics: hlw_quota_prod
  267. type:
  268. Statistics: hlw_quota_prod
  269. host: http://192.0.33.26:9200
  270. tHost: 192.0.33.26:9300
  271. clusterName: jkzl
  272. # 上传文件临时路径配置
  273. FileTempPath:
  274. upload_temp_path : /var/local/temp
  275. image_path : /var/local/upload/images
  276. voice_path : /var/local/upload/voice
  277. chat_file_path : /var/local/upload/chat
  278. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  279. testPattern:
  280. sign: 0
  281. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  282. wlyy:
  283. url: http://www.xmtyw.cn/wlyytest/
  284. qywx:
  285. url: https://hlwyy.xmzsh.com/hlwyy
  286. id: zsyy
  287. ---
  288. spring:
  289. profiles: jwOracleTest
  290. datasource:
  291. driver-class-name: oracle.jdbc.driver.OracleDriver
  292. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  293. username: normal
  294. password: normal
  295. jpa:
  296. properties:
  297. hibernate:
  298. dialect: org.hibernate.dialect.Oracle10gDialect
  299. show_sql: true
  300. database: oracle
  301. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  302. # username: root
  303. # password: 123456
  304. # elasticsearch:
  305. # cluster-name: jkzl #集群名 默认elasticsearch
  306. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  307. # client-transport-sniff: false
  308. # jest:
  309. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  310. # connection-timeout: 60000 # Connection timeout in milliseconds.
  311. # multi-threaded: true # Enable connection requests from multiple execution threads.
  312. activemq:
  313. broker-url: tcp://172.26.0.116:61616
  314. user: admin
  315. password: admin
  316. redis:
  317. host: 172.26.0.253 # Redis server host.
  318. port: 6379 # Redis server port.
  319. fastDFS:
  320. fastdfs_file_url: http://172.26.0.110:8888/
  321. fast-dfs:
  322. tracker-server: 172.26.0.110:22122 #服务器地址
  323. wechat:
  324. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  325. # 短信验证码发送的客户端标识,居民端
  326. sms:
  327. clientId: EwC0iRSrcP
  328. myFamily:
  329. qrCodeFailurTime: 2
  330. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  331. demo:
  332. flag: true
  333. hospital:
  334. url: https://wx.xmzsh.com
  335. mqUser: JKZL
  336. mqPwd: 123456
  337. SourceSysCode: S60
  338. TargetSysCode: S01
  339. im:
  340. im_list_get: http://172.26.0.105:3000/
  341. data_base_name: im_internet_hospital
  342. # 上传文件临时路径配置
  343. FileTempPath:
  344. upload_temp_path : /var/local/temp
  345. image_path : /var/local/upload/images
  346. voice_path : /var/local/upload/voice
  347. chat_file_path : /var/local/upload/chat
  348. es:
  349. pwflag: 1 # 1需要密码,2不需要密码
  350. index:
  351. Statistics: hlw_quota_test
  352. type:
  353. Statistics: hlw_quota_test
  354. host: http://172.26.0.55:9200
  355. tHost: 172.26.0.55:9300
  356. clusterName: jkzl
  357. securityUser: elastic:changeme
  358. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  359. testPattern:
  360. sign: 0
  361. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  362. wlyy:
  363. url: http://ehr.yihu.com/wlyy/
  364. qywx:
  365. url: 2
  366. id: 1
  367. ---
  368. spring:
  369. profiles: jwOracleProd
  370. datasource:
  371. driver-class-name: oracle.jdbc.driver.OracleDriver
  372. url: jdbc:oracle:thin:@10.10.10.16:1521/rac
  373. username: HLWYY
  374. password: Xmykzxhlwyy963
  375. jpa:
  376. properties:
  377. hibernate:
  378. dialect: org.hibernate.dialect.Oracle10gDialect
  379. show_sql: true
  380. database: oracle
  381. # elasticsearch:
  382. # cluster-name: jkzl #集群名 默认elasticsearch
  383. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  384. # client-transport-sniff: false
  385. # jest:
  386. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  387. # connection-timeout: 60000 # Connection timeout in milliseconds.
  388. # multi-threaded: true # Enable connection requests from multiple execution threads.
  389. activemq:
  390. broker-url: tcp://172.26.0.116:61616
  391. user: admin
  392. password: admin
  393. redis:
  394. host: 172.26.0.253 # Redis server host.
  395. port: 6379 # Redis server port.
  396. fastDFS:
  397. fastdfs_file_url: http://172.26.0.110:8888/
  398. fast-dfs:
  399. tracker-server: 172.26.0.110:22122 #服务器地址
  400. wechat:
  401. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  402. # 短信验证码发送的客户端标识,居民端
  403. sms:
  404. clientId: EwC0iRSrcP
  405. myFamily:
  406. qrCodeFailurTime: 2
  407. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  408. demo:
  409. flag: true
  410. hospital:
  411. url: https://wx.xmzsh.com
  412. mqUser: JKZL
  413. mqPwd: 123456
  414. SourceSysCode: S60
  415. TargetSysCode: S01
  416. im:
  417. im_list_get: http://172.26.0.105:3000/
  418. data_base_name: im_internet_hospital
  419. # 上传文件临时路径配置
  420. FileTempPath:
  421. upload_temp_path : /var/local/temp
  422. image_path : /var/local/upload/images
  423. voice_path : /var/local/upload/voice
  424. chat_file_path : /var/local/upload/chat
  425. es:
  426. pwflag: 1 # 1需要密码,2不需要密码
  427. index:
  428. Statistics: hlw_quota_test
  429. type:
  430. Statistics: hlw_quota_test
  431. host: http://172.26.0.112:9200
  432. tHost: 172.26.0.112:9300
  433. clusterName: jkzl
  434. securityUser: elastic:elastic
  435. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  436. testPattern:
  437. sign: 0
  438. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  439. wlyy:
  440. url: http://ehr.yihu.com/wlyy/
  441. qywx:
  442. url: 2
  443. id: 1
  444. ---
  445. ##==心脏中心 ===============================================================================
  446. spring:
  447. profiles: xzprod_in
  448. datasource:
  449. driver-class-name: com.mysql.jdbc.Driver
  450. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  451. username: jkzl
  452. password: jkzl@2020
  453. elasticsearch:
  454. cluster-name: jkzl #集群名 默认elasticsearch
  455. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  456. client-transport-sniff: false
  457. jest:
  458. uris: http://192.168.103.153:9300
  459. connection-timeout: 60000 # Connection timeout in milliseconds.
  460. multi-threaded: true # Enable connection requests from multiple execution threads.
  461. activemq:
  462. broker-url: tcp://59.61.92.90:9103
  463. user: jkzl
  464. password: jkzlehr
  465. redis:
  466. host: 192.168.103.158 # Redis server host.
  467. port: 6380 # Redis server port.
  468. password: q4YaQemf
  469. fastDFS:
  470. fastdfs_file_url: http://192.168.103.159:8888/
  471. fast-dfs:
  472. tracker-server: 192.168.103.159:22122 #服务器地址
  473. wechat:
  474. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  475. # 短信验证码发送的客户端标识,居民端
  476. sms:
  477. clientId: EwC0iRSrcP #todo 待配置
  478. myFamily:
  479. qrCodeFailurTime: 2
  480. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  481. demo:
  482. flag: false
  483. hospital:
  484. url: https://wx.xmzsh.com
  485. mqUser: JKZL
  486. mqPwd: 123456
  487. SourceSysCode: S60
  488. TargetSysCode: S01
  489. im:
  490. im_list_get: http://192.168.103.150:3000/
  491. data_base_name: im
  492. # 上传文件临时路径配置
  493. FileTempPath:
  494. upload_temp_path : /var/local/temp
  495. image_path : /var/local/upload/images
  496. voice_path : /var/local/upload/voice
  497. chat_file_path : /var/local/upload/chat
  498. es:
  499. pwflag: 1 # 1需要密码,2不需要密码
  500. index:
  501. Statistics: hlw_quota_test
  502. type:
  503. Statistics: hlw_quota_test
  504. host: http://192.168.103.153:9200
  505. tHost: 192.168.103.153:9300
  506. clusterName: jkzl
  507. securityUser: lion:jkzlehr
  508. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  509. testPattern:
  510. sign: 0
  511. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  512. wlyy:
  513. url: http://ehr.yihu.com/wlyy/
  514. qywx:
  515. url: https://ih.xmheart.com/hlwyy/
  516. id: xm_xzzx_wx
  517. ---
  518. ##==心脏中心外 ===============================================================================
  519. spring:
  520. profiles: xzprod
  521. datasource:
  522. driver-class-name: com.mysql.jdbc.Driver
  523. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  524. username: jkzl
  525. password: jkzl@2020
  526. elasticsearch:
  527. cluster-name: jkzl #集群名 默认elasticsearch
  528. cluster-nodes: 172.16.100.240:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  529. client-transport-sniff: false
  530. jest:
  531. uris: http://172.16.100.240:9300
  532. connection-timeout: 60000 # Connection timeout in milliseconds.
  533. multi-threaded: true # Enable connection requests from multiple execution threads.
  534. activemq:
  535. broker-url: tcp://59.61.92.90:9103
  536. user: jkzl
  537. password: jkzlehr
  538. redis:
  539. host: 172.16.100.240 # Redis server host.
  540. port: 6380 # Redis server port.
  541. password: q4YaQemf
  542. fastDFS:
  543. fastdfs_file_url: http://172.16.100.240:8888/
  544. fast-dfs:
  545. tracker-server: 172.16.100.240:22122 #服务器地址
  546. wechat:
  547. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  548. # 短信验证码发送的客户端标识,居民端
  549. sms:
  550. clientId: EwC0iRSrcP #todo 待配置
  551. myFamily:
  552. qrCodeFailurTime: 2
  553. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  554. demo:
  555. flag: false
  556. hospital:
  557. url: https://wx.xmzsh.com
  558. mqUser: JKZL
  559. mqPwd: 123456
  560. SourceSysCode: S60
  561. TargetSysCode: S01
  562. im:
  563. im_list_get: http://172.16.100.241:3000/
  564. data_base_name: im
  565. # 上传文件临时路径配置
  566. FileTempPath:
  567. upload_temp_path : /var/local/temp
  568. image_path : /var/local/upload/images
  569. voice_path : /var/local/upload/voice
  570. chat_file_path : /var/local/upload/chat
  571. es:
  572. pwflag: 1 # 1需要密码,2不需要密码
  573. index:
  574. Statistics: hlw_quota_prod
  575. type:
  576. Statistics: hlw_quota_prod
  577. host: http://172.16.100.240:9200
  578. tHost: 172.16.100.240:9300
  579. clusterName: jkzl
  580. securityUser: lion:jkzlehr
  581. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  582. testPattern:
  583. sign: 2
  584. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  585. wlyy:
  586. url: http://ehr.yihu.com/wlyy/
  587. qywx:
  588. url: https://ih.xmheart.com/hlwyy/
  589. id: xm_xzzx_wx
  590. ---
  591. ##==厦门卫计委 ===============================================================================
  592. spring:
  593. profiles: xmjwprod
  594. datasource:
  595. driver-class-name: com.mysql.jdbc.Driver
  596. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  597. username: wlyy
  598. password: qY#j2n5O
  599. elasticsearch:
  600. cluster-name: jkzl #集群名 默认elasticsearch
  601. cluster-nodes: 10.95.22.155:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  602. client-transport-sniff: false
  603. jest:
  604. uris: http://10.95.22.155:9300
  605. connection-timeout: 60000 # Connection timeout in milliseconds.
  606. multi-threaded: true # Enable connection requests from multiple execution threads.
  607. activemq:
  608. broker-url: tcp://59.61.92.90:9103
  609. user: jkzl
  610. password: jkzlehr
  611. redis:
  612. host: 59.61.92.90 # Redis server host.
  613. port: 9054 # Redis server port.
  614. password: jkzlehr
  615. fastDFS:
  616. fastdfs_file_url: http://192.168.103.159:8888/
  617. fast-dfs:
  618. tracker-server: 192.168.103.159:22122 #服务器地址
  619. wechat:
  620. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  621. # 短信验证码发送的客户端标识,居民端
  622. sms:
  623. clientId: EwC0iRSrcP #todo 待配置
  624. myFamily:
  625. qrCodeFailurTime: 2
  626. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  627. demo:
  628. flag: false
  629. hospital:
  630. url: https://wx.xmzsh.com
  631. mqUser: JKZL
  632. mqPwd: 123456
  633. SourceSysCode: S60
  634. TargetSysCode: S01
  635. im:
  636. im_list_get: http://172.16.1.42:3000/
  637. data_base_name: im
  638. # 上传文件临时路径配置
  639. FileTempPath:
  640. upload_temp_path : /var/local/temp
  641. image_path : /var/local/upload/images
  642. voice_path : /var/local/upload/voice
  643. chat_file_path : /var/local/upload/chat
  644. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  645. testPattern:
  646. sign: 1
  647. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  648. wlyy:
  649. url: http://www.xmtyw.cn/wlyytest/
  650. es:
  651. pwflag: 0 # 1需要密码,0不需要密码
  652. index:
  653. Statistics: hlw_quota_prod
  654. type:
  655. Statistics: hlw_quota_prod
  656. host: http://172.16.100.240:9200
  657. tHost: 172.16.100.240:9300
  658. clusterName: jkzl
  659. securityUser: lion:jkzlehr
  660. qywx:
  661. url: 1
  662. id: 2