application.yml 20 KB

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