application.yml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  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.112:9200
  344. tHost: 172.26.0.112:9300
  345. clusterName: jkzl
  346. #是否开启i健康接口 0关闭,1开启
  347. testPattern:
  348. sign: 0
  349. wlyy:
  350. url: http://www.xmtyw.cn/wlyytest/
  351. ---
  352. spring:
  353. profiles: jwOracleProd
  354. datasource:
  355. driver-class-name: oracle.jdbc.driver.OracleDriver
  356. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  357. username: normal
  358. password: normal
  359. jpa:
  360. properties:
  361. hibernate:
  362. dialect: org.hibernate.dialect.Oracle10gDialect
  363. show_sql: true
  364. database: oracle
  365. # elasticsearch:
  366. # cluster-name: jkzl #集群名 默认elasticsearch
  367. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  368. # client-transport-sniff: false
  369. # jest:
  370. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  371. # connection-timeout: 60000 # Connection timeout in milliseconds.
  372. # multi-threaded: true # Enable connection requests from multiple execution threads.
  373. activemq:
  374. broker-url: tcp://172.26.0.116:61616
  375. user: admin
  376. password: admin
  377. redis:
  378. host: 172.26.0.253 # Redis server host.
  379. port: 6379 # Redis server port.
  380. fastDFS:
  381. fastdfs_file_url: http://172.26.0.110:8888/
  382. fast-dfs:
  383. tracker-server: 172.26.0.110:22122 #服务器地址
  384. wechat:
  385. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  386. # 短信验证码发送的客户端标识,居民端
  387. sms:
  388. clientId: EwC0iRSrcP
  389. myFamily:
  390. qrCodeFailurTime: 2
  391. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  392. demo:
  393. flag: true
  394. hospital:
  395. url: https://wx.xmzsh.com
  396. mqUser: JKZL
  397. mqPwd: 123456
  398. SourceSysCode: S60
  399. TargetSysCode: S01
  400. im:
  401. im_list_get: http://172.26.0.105:3000/
  402. data_base_name: im_internet_hospital
  403. # 上传文件临时路径配置
  404. FileTempPath:
  405. upload_temp_path : /var/local/temp
  406. image_path : /var/local/upload/images
  407. voice_path : /var/local/upload/voice
  408. chat_file_path : /var/local/upload/chat
  409. es:
  410. pwflag: 1 # 1需要密码,2不需要密码
  411. index:
  412. Statistics: hlw_quota_test
  413. type:
  414. Statistics: hlw_quota_test
  415. host: http://172.26.0.112:9200
  416. tHost: 172.26.0.112:9300
  417. clusterName: jkzl
  418. securityUser: elastic:elastic
  419. #是否开启i健康接口 0关闭,1开启
  420. testPattern:
  421. sign: 0
  422. wlyy:
  423. url: http://www.xmtyw.cn/wlyytest/
  424. ---
  425. ##==心脏中心 ===============================================================================
  426. spring:
  427. profiles: xzprod_in
  428. datasource:
  429. driver-class-name: com.mysql.jdbc.Driver
  430. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  431. username: jkzl
  432. password: jkzl@2020
  433. elasticsearch:
  434. cluster-name: jkzl #集群名 默认elasticsearch
  435. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  436. client-transport-sniff: false
  437. jest:
  438. uris: http://192.168.103.153:9300
  439. connection-timeout: 60000 # Connection timeout in milliseconds.
  440. multi-threaded: true # Enable connection requests from multiple execution threads.
  441. activemq:
  442. broker-url: tcp://59.61.92.90:9103
  443. user: jkzl
  444. password: jkzlehr
  445. redis:
  446. host: 192.168.103.158 # Redis server host.
  447. port: 6380 # Redis server port.
  448. password: q4YaQemf
  449. fastDFS:
  450. fastdfs_file_url: http://192.168.103.159:8888/
  451. fast-dfs:
  452. tracker-server: 192.168.103.159:22122 #服务器地址
  453. wechat:
  454. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  455. # 短信验证码发送的客户端标识,居民端
  456. sms:
  457. clientId: EwC0iRSrcP #todo 待配置
  458. myFamily:
  459. qrCodeFailurTime: 2
  460. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  461. demo:
  462. flag: false
  463. hospital:
  464. url: https://wx.xmzsh.com
  465. mqUser: JKZL
  466. mqPwd: 123456
  467. SourceSysCode: S60
  468. TargetSysCode: S01
  469. im:
  470. im_list_get: http://172.16.1.42:3000/
  471. data_base_name: im
  472. # 上传文件临时路径配置
  473. FileTempPath:
  474. upload_temp_path : /var/local/temp
  475. image_path : /var/local/upload/images
  476. voice_path : /var/local/upload/voice
  477. chat_file_path : /var/local/upload/chat
  478. es:
  479. pwflag: 1 # 1需要密码,2不需要密码
  480. index:
  481. Statistics: hlw_quota_test
  482. type:
  483. Statistics: hlw_quota_test
  484. host: http://192.168.103.153:9200
  485. tHost: 192.168.103.153:9300
  486. clusterName: jkzl
  487. securityUser: lion:jkzlehr
  488. #是否开启i健康接口 0关闭,1开启
  489. testPattern:
  490. sign: 0
  491. wlyy:
  492. url: http://www.xmtyw.cn/wlyytest/
  493. ---
  494. ##==心脏中心外 ===============================================================================
  495. spring:
  496. profiles: xzprod
  497. datasource:
  498. driver-class-name: com.mysql.jdbc.Driver
  499. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  500. username: jkzl
  501. password: jkzl@2020
  502. elasticsearch:
  503. cluster-name: jkzl #集群名 默认elasticsearch
  504. cluster-nodes: 172.16.100.240:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  505. client-transport-sniff: false
  506. jest:
  507. uris: http://172.16.100.240:9300
  508. connection-timeout: 60000 # Connection timeout in milliseconds.
  509. multi-threaded: true # Enable connection requests from multiple execution threads.
  510. activemq:
  511. broker-url: tcp://59.61.92.90:9103
  512. user: jkzl
  513. password: jkzlehr
  514. redis:
  515. host: 172.16.100.240 # Redis server host.
  516. port: 6380 # Redis server port.
  517. password: q4YaQemf
  518. fastDFS:
  519. fastdfs_file_url: http://172.16.100.240:8888/
  520. fast-dfs:
  521. tracker-server: 172.16.100.240:22122 #服务器地址
  522. wechat:
  523. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  524. # 短信验证码发送的客户端标识,居民端
  525. sms:
  526. clientId: EwC0iRSrcP #todo 待配置
  527. myFamily:
  528. qrCodeFailurTime: 2
  529. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  530. demo:
  531. flag: false
  532. hospital:
  533. url: https://wx.xmzsh.com
  534. mqUser: JKZL
  535. mqPwd: 123456
  536. SourceSysCode: S60
  537. TargetSysCode: S01
  538. im:
  539. im_list_get: http://172.16.1.42:3000/
  540. data_base_name: im
  541. # 上传文件临时路径配置
  542. FileTempPath:
  543. upload_temp_path : /var/local/temp
  544. image_path : /var/local/upload/images
  545. voice_path : /var/local/upload/voice
  546. chat_file_path : /var/local/upload/chat
  547. es:
  548. pwflag: 1 # 1需要密码,2不需要密码
  549. index:
  550. Statistics: hlw_quota_test
  551. type:
  552. Statistics: hlw_quota_test
  553. host: http://172.16.100.240:9200
  554. tHost: 172.16.100.240:9300
  555. clusterName: jkzl
  556. securityUser: lion:jkzlehr
  557. #是否开启i健康接口 0关闭,1开启
  558. testPattern:
  559. sign: 0
  560. wlyy:
  561. url: http://www.xmtyw.cn/wlyytest/
  562. ---
  563. ##==厦门卫计委 ===============================================================================
  564. spring:
  565. profiles: xmjwprod
  566. datasource:
  567. driver-class-name: com.mysql.jdbc.Driver
  568. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  569. username: wlyy
  570. password: qY#j2n5O
  571. elasticsearch:
  572. cluster-name: jkzl #集群名 默认elasticsearch
  573. cluster-nodes: 10.95.22.155:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  574. client-transport-sniff: false
  575. jest:
  576. uris: http://10.95.22.155:9300
  577. connection-timeout: 60000 # Connection timeout in milliseconds.
  578. multi-threaded: true # Enable connection requests from multiple execution threads.
  579. activemq:
  580. broker-url: tcp://59.61.92.90:9103
  581. user: jkzl
  582. password: jkzlehr
  583. redis:
  584. host: 59.61.92.90 # Redis server host.
  585. port: 9054 # Redis server port.
  586. password: jkzlehr
  587. fastDFS:
  588. fastdfs_file_url: http://192.168.103.159:8888/
  589. fast-dfs:
  590. tracker-server: 192.168.103.159:22122 #服务器地址
  591. wechat:
  592. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  593. # 短信验证码发送的客户端标识,居民端
  594. sms:
  595. clientId: EwC0iRSrcP #todo 待配置
  596. myFamily:
  597. qrCodeFailurTime: 2
  598. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  599. demo:
  600. flag: false
  601. hospital:
  602. url: https://wx.xmzsh.com
  603. mqUser: JKZL
  604. mqPwd: 123456
  605. SourceSysCode: S60
  606. TargetSysCode: S01
  607. im:
  608. im_list_get: http://172.16.1.42:3000/
  609. data_base_name: im
  610. # 上传文件临时路径配置
  611. FileTempPath:
  612. upload_temp_path : /var/local/temp
  613. image_path : /var/local/upload/images
  614. voice_path : /var/local/upload/voice
  615. chat_file_path : /var/local/upload/chat
  616. #是否开启i健康接口 0关闭,1开启
  617. testPattern:
  618. sign: 1
  619. wlyy:
  620. url: http://www.xmtyw.cn/wlyytest/
  621. es:
  622. pwflag: 0 # 1需要密码,0不需要密码
  623. index:
  624. Statistics: hlw_quota_test
  625. type:
  626. Statistics: hlw_quota_test
  627. host: http://172.16.100.240:9200
  628. tHost: 172.16.100.240:9300
  629. clusterName: jkzl
  630. securityUser: lion:jkzlehr