svr-internet-hospital.yml 24 KB

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