application.yml 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394
  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. max-request-size: 100MB
  27. # location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
  28. # resolve-lazily: true
  29. redis:
  30. database: 0 # Database index used by the connection factory.
  31. password: # Login password of the redis server.
  32. timeout: 120000 # 连接超时时间(毫秒) 60秒
  33. pool:
  34. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  35. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  36. max-idle: 20 # 连接池中的最大空闲连接
  37. min-idle: 5 # 连接池中的最小空闲连接
  38. mail:
  39. default-encoding: UTF-8
  40. #端口
  41. port: 25
  42. #协议
  43. protocol: smtp
  44. properties.mail.smtp.auth: true
  45. properties.mail.smtp.starttls.enable: true
  46. properties.mail.smtp.starttls.required: true
  47. host: smtp.163.com
  48. #发送者的邮箱密码
  49. password: xmijk181016jkzl
  50. #发送者的邮箱账号
  51. username: i_jiankang@163.com
  52. es:
  53. index:
  54. servicePackLog: base_service_package_log
  55. type:
  56. servicePackLog: base_service_package_log
  57. fast-dfs:
  58. connect-timeout: 2 #链接超时时间
  59. network-timeout: 30
  60. charset: ISO8859-1 #编码
  61. http:
  62. tracker-http-port: 80
  63. anti-steal-token: no
  64. secret-key: FastDFS1234567890
  65. pool: #连接池大小
  66. init-size: 5
  67. max-size: 20
  68. wait-time: 500
  69. configDefault: # 默认配置
  70. saasId: xmjkzl_saasId
  71. ##拦截器开关
  72. interceptor:
  73. accesstoken:
  74. status: 1 ### 1开启 0 关闭
  75. time: 2 ##对外接的accesstoken生命周期 2小时
  76. swagger:
  77. basic:
  78. enable: true
  79. username: jw
  80. password: jkzl
  81. ---
  82. spring:
  83. profiles: jwdev
  84. datasource:
  85. driver-class-name: com.mysql.jdbc.Driver
  86. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  87. username: ssgg
  88. password: ssgg@jkzl2019
  89. # elasticsearch:
  90. # cluster-name: jkzl #集群名 默认elasticsearch
  91. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  92. # client-transport-sniff: false
  93. # jest:
  94. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  95. # connection-timeout: 60000 # Connection timeout in milliseconds.
  96. # multi-threaded: true # Enable connection requests from multiple execution threads.
  97. activemq:
  98. broker-url: tcp://172.26.0.116:61616
  99. user: admin
  100. password: admin
  101. redis:
  102. host: 172.26.0.253 # Redis server host.
  103. port: 6379 # Redis server port.
  104. # password: jkzl_ehr
  105. # zipkin:
  106. # base-url: http://localhost:9411 #日志追踪的地址
  107. fastDFS:
  108. fastdfs_file_url: http://172.26.0.110:8888/
  109. fast-dfs:
  110. tracker-server: 172.26.0.110:22122 #服务器地址
  111. # 短信发送地址
  112. jw:
  113. smsUrl: http://svr-base:10020/sms_gateway/send
  114. myFamily:
  115. qrCodeFailurTime: 2
  116. wechat:
  117. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  118. flag: false #演示环境 true走Mysql数据库 false走Oracle
  119. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  120. # 短信验证码发送的客户端标识,居民端
  121. sms:
  122. clientId: EwC0iRSrcP
  123. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  124. demo:
  125. flag: true
  126. #支付支付
  127. pay:
  128. flag: true
  129. hospital:
  130. url: https://wx.xmzsh.com
  131. mqUser: JKZL
  132. mqPwd: 123456
  133. SourceSysCode: S60
  134. TargetSysCode: S01
  135. im:
  136. im_list_get: http://172.26.0.105:3000/
  137. data_base_name: im_internet_hospital
  138. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  139. testPattern:
  140. sign: 0
  141. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  142. wlyy:
  143. url: http://ehr.yihu.com/wlyy/
  144. es:
  145. pwflag: 1 # 1需要密码,2不需要密码
  146. index:
  147. Statistics: hlw_quota_test
  148. type:
  149. Statistics: hlw_quota_test
  150. host: http://172.26.0.112:9200
  151. tHost: 172.26.0.112:9300
  152. clusterName: jkzl
  153. securityUser: elastic:elastic
  154. user: lion
  155. password: jkzlehr
  156. # 上传文件临时路径配置
  157. FileTempPath:
  158. upload_temp_path : /var/local/temp
  159. image_path : /var/local/upload/images
  160. voice_path : /var/local/upload/voice
  161. chat_file_path : /var/local/upload/chat
  162. qywx:
  163. url: 2
  164. id: 2
  165. express:
  166. sf_url: https://mrds-admin.sf-express.com:443
  167. sf_code: JKZL
  168. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  169. ---
  170. spring:
  171. profiles: jwtest
  172. datasource:
  173. driver-class-name: com.mysql.jdbc.Driver
  174. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  175. username: ssgg
  176. password: ssgg@jkzl2019
  177. # elasticsearch:
  178. # cluster-name: jkzl #集群名 默认elasticsearch
  179. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  180. # client-transport-sniff: false
  181. # jest:
  182. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  183. # connection-timeout: 60000 # Connection timeout in milliseconds.
  184. # multi-threaded: true # Enable connection requests from multiple execution threads.
  185. activemq:
  186. broker-url: tcp://172.26.0.116:61616
  187. user: admin
  188. password: admin
  189. redis:
  190. host: 172.26.0.253 # Redis server host.
  191. port: 6379 # Redis server port.
  192. fastDFS:
  193. fastdfs_file_url: http://172.26.0.110:8888/
  194. fast-dfs:
  195. tracker-server: 172.26.0.110:22122 #服务器地址
  196. wechat:
  197. id: xm_mlwyy_wx # base库中,wx_wechat 的id字段
  198. flag: false #演示环境 true走Mysql数据库 false走Oracle
  199. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  200. # 短信验证码发送的客户端标识,居民端
  201. sms:
  202. clientId: EwC0iRSrcP
  203. myFamily:
  204. qrCodeFailurTime: 2
  205. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  206. demo:
  207. flag: true
  208. #支付支付
  209. pay:
  210. flag: true
  211. hospital:
  212. url: https://wx.xmzsh.com
  213. mqUser: JKZL
  214. mqPwd: 123456
  215. SourceSysCode: S60
  216. TargetSysCode: S01
  217. im:
  218. im_list_get: http://172.26.0.105:3000/
  219. data_base_name: im_internet_hospital
  220. es:
  221. pwflag: 1 # 1需要密码,2不需要密码
  222. index:
  223. Statistics: hlw_quota_test
  224. type:
  225. Statistics: hlw_quota_test
  226. host: http://172.26.0.55:9000
  227. tHost: 172.26.0.55:9300
  228. clusterName: jkzl
  229. securityUser: lion:jkzlehr
  230. user: lion
  231. password: jkzlehr
  232. # 上传文件临时路径配置
  233. FileTempPath:
  234. upload_temp_path : /var/local/temp
  235. image_path : /var/local/upload/images
  236. voice_path : /var/local/upload/voice
  237. chat_file_path : /var/local/upload/chat
  238. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  239. testPattern:
  240. sign: 0
  241. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  242. wlyy:
  243. url: http://ehr.yihu.com/wlyy/
  244. qywx:
  245. url: 2
  246. id: 1
  247. express:
  248. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  249. sf_code: HD000001
  250. sf_check_word: AAAABBBBCCCCDDDD
  251. ---
  252. spring:
  253. profiles: jwprod
  254. datasource:
  255. driver-class-name: com.mysql.jdbc.Driver
  256. url: jdbc:mysql://172.16.1.42:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  257. username: im
  258. password: 2oEq3Kf7
  259. activemq:
  260. broker-url: tcp://59.61.92.90:9103
  261. user: jkzl
  262. password: jkzlehr
  263. redis:
  264. host: 192.0.33.26 # Redis server host.
  265. port: 6390 # Redis server port.
  266. password: Kb6wKDQP1W4
  267. fastDFS:
  268. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  269. fast-dfs:
  270. tracker-server: 192.0.33.26:22122 #服务器地址
  271. wechat:
  272. id: xm_zsyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  273. flag: false #演示环境 true走Mysql数据库 false走Oracle
  274. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  275. sms:
  276. clientId: EwC0iRSrcP #todo 待配置
  277. myFamily:
  278. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  279. demo:
  280. flag: true #支付支付
  281. pay:
  282. flag: true
  283. hospital:
  284. url: https://wx.xmzsh.com
  285. mqUser: JKZL
  286. mqPwd: 123456
  287. SourceSysCode: S60
  288. TargetSysCode: S01
  289. im:
  290. im_list_get: http://172.16.1.42:3000/
  291. data_base_name: im
  292. es:
  293. pwflag: 1 # 1需要密码,2不需要密码
  294. index:
  295. Statistics: hlw_quota_prod
  296. type:
  297. Statistics: hlw_quota_prod
  298. host: http://192.0.33.26:9200
  299. tHost: 192.0.33.26:9300
  300. clusterName: jkzl
  301. user: lion
  302. password: jkzlehr
  303. FileTempPath: # 上传文件临时路径配置
  304. upload_temp_path : /var/local/temp
  305. image_path : /var/local/upload/images
  306. voice_path : /var/local/upload/voice
  307. chat_file_path : /var/local/upload/chat
  308. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  309. sign: 0
  310. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  311. wlyy:
  312. url: http://www.xmtyw.cn/wlyytest/
  313. qywx:
  314. url: https://hlwyy.xmzsh.com/hlwyy
  315. id: zsyy
  316. express:
  317. sf_url: https://mrds-admin.sf-express.com:443
  318. sf_code: WH000102
  319. sf_check_word: TGUQASFNAZyjt9112
  320. ---
  321. spring:
  322. profiles: jwOracleTest
  323. datasource:
  324. driver-class-name: oracle.jdbc.driver.OracleDriver
  325. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  326. username: normal
  327. password: normal
  328. jpa:
  329. properties:
  330. hibernate:
  331. dialect: org.hibernate.dialect.Oracle10gDialect
  332. show_sql: true
  333. database: oracle
  334. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  335. # username: root
  336. # password: 123456
  337. # elasticsearch:
  338. # cluster-name: jkzl #集群名 默认elasticsearch
  339. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  340. # client-transport-sniff: false
  341. # jest:
  342. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  343. # connection-timeout: 60000 # Connection timeout in milliseconds.
  344. # multi-threaded: true # Enable connection requests from multiple execution threads.
  345. activemq:
  346. broker-url: tcp://172.26.0.116:61616
  347. user: admin
  348. password: admin
  349. redis:
  350. host: 172.26.0.253 # Redis server host.
  351. port: 6379 # Redis server port.
  352. fastDFS:
  353. fastdfs_file_url: http://172.26.0.110:8888/
  354. fast-dfs:
  355. tracker-server: 172.26.0.110:22122 #服务器地址
  356. wechat:
  357. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  358. flag: false #演示环境 true走Mysql数据库 false走Oracle
  359. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  360. # 短信验证码发送的客户端标识,居民端
  361. sms:
  362. clientId: EwC0iRSrcP
  363. myFamily:
  364. qrCodeFailurTime: 2
  365. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  366. demo:
  367. flag: true
  368. #支付支付
  369. pay:
  370. flag: true
  371. hospital:
  372. url: https://wx.xmzsh.com
  373. mqUser: JKZL
  374. mqPwd: 123456
  375. SourceSysCode: S60
  376. TargetSysCode: S01
  377. im:
  378. im_list_get: http://172.26.0.105:3000/
  379. data_base_name: im_internet_hospital
  380. # 上传文件临时路径配置
  381. FileTempPath:
  382. upload_temp_path : /var/local/temp
  383. image_path : /var/local/upload/images
  384. voice_path : /var/local/upload/voice
  385. chat_file_path : /var/local/upload/chat
  386. es:
  387. pwflag: 1 # 1需要密码,2不需要密码
  388. index:
  389. Statistics: hlw_quota_test
  390. type:
  391. Statistics: hlw_quota_test
  392. host: http://172.26.0.55:9200
  393. tHost: 172.26.0.55:9300
  394. clusterName: jkzl
  395. securityUser: elastic:changeme
  396. user: lion
  397. password: jkzlehr
  398. #文件服务器上传配置 1本地,3.I健康,2.内网调用
  399. testPattern:
  400. sign: 0
  401. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  402. wlyy:
  403. url: http://ehr.yihu.com/wlyy/
  404. qywx:
  405. url: 2
  406. id: 1
  407. express:
  408. sf_url: https://mrds-admin.sf-express.com:443
  409. sf_code: WH000091
  410. sf_check_word: SFAHKAOFAAITyjt7890
  411. ---
  412. spring:
  413. profiles: jwOracleProd
  414. datasource:
  415. driver-class-name: oracle.jdbc.driver.OracleDriver
  416. url: jdbc:oracle:thin:@10.10.10.16:1521/rac
  417. username: HLWYY
  418. password: Xmykzxhlwyy963
  419. jpa:
  420. properties:
  421. hibernate:
  422. dialect: org.hibernate.dialect.Oracle10gDialect
  423. show_sql: true
  424. database: oracle
  425. # elasticsearch:
  426. # cluster-name: jkzl #集群名 默认elasticsearch
  427. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  428. # client-transport-sniff: false
  429. # jest:
  430. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  431. # connection-timeout: 60000 # Connection timeout in milliseconds.
  432. # multi-threaded: true # Enable connection requests from multiple execution threads.
  433. activemq:
  434. broker-url: tcp://172.26.0.116:61616
  435. user: admin
  436. password: admin
  437. redis:
  438. host: 192.168.33.198 # Redis server host.
  439. port: 6380 # Redis server port.
  440. fastDFS:
  441. fastdfs_file_url: http://192.168.33.198:8888/
  442. fast-dfs:
  443. tracker-server: 192.168.33.198:22122 #服务器地址
  444. wechat:
  445. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  446. flag: false #演示环境 true走Mysql数据库 false走Oracle
  447. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  448. # 短信验证码发送的客户端标识,居民端
  449. sms:
  450. clientId: EwC0iRSrcP
  451. myFamily:
  452. qrCodeFailurTime: 2
  453. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  454. demo:
  455. flag: true
  456. #支付支付
  457. pay:
  458. flag: true
  459. hospital:
  460. url: https://wx.xmzsh.com
  461. mqUser: JKZL
  462. mqPwd: 123456
  463. SourceSysCode: S60
  464. TargetSysCode: S01
  465. im:
  466. im_list_get: http://172.26.0.105:3000/
  467. data_base_name: im_internet_hospital
  468. # 上传文件临时路径配置
  469. FileTempPath:
  470. upload_temp_path : /var/local/temp
  471. image_path : /var/local/upload/images
  472. voice_path : /var/local/upload/voice
  473. chat_file_path : /var/local/upload/chat
  474. es:
  475. pwflag: 1 # 1需要密码,2不需要密码
  476. index:
  477. Statistics: hlw_quota_prod
  478. type:
  479. Statistics: hlw_quota_prod
  480. host: http://192.168.33.198:9200
  481. tHost: 192.168.33.198:9300
  482. clusterName: jkzl
  483. securityUser: lion:jkzlehr
  484. user: lion
  485. password: jkzlehr
  486. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  487. testPattern:
  488. sign: 0
  489. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  490. wlyy:
  491. url: http://ehr.yihu.com/wlyy/
  492. qywx:
  493. url: 2
  494. id: 1
  495. express:
  496. sf_url: https://mrds-admin.sf-express.com:443
  497. sf_code: WH000091
  498. sf_check_word: SFAHKAOFAAITyjt7890
  499. ---
  500. ##==心脏中心 ===============================================================================
  501. spring:
  502. profiles: xzprod_in
  503. datasource:
  504. driver-class-name: com.mysql.jdbc.Driver
  505. url: jdbc:mysql://192.168.103.155:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  506. username: jkzl
  507. password: jkzl@2020
  508. elasticsearch:
  509. cluster-name: jkzl #集群名 默认elasticsearch
  510. cluster-nodes: 192.168.103.153:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  511. client-transport-sniff: false
  512. jest:
  513. uris: http://192.168.103.153:9300
  514. connection-timeout: 60000 # Connection timeout in milliseconds.
  515. multi-threaded: true # Enable connection requests from multiple execution threads.
  516. activemq:
  517. broker-url: tcp://59.61.92.90:9103
  518. user: jkzl
  519. password: jkzlehr
  520. redis:
  521. host: 192.168.103.158 # Redis server host.
  522. port: 6380 # Redis server port.
  523. password: q4YaQemf
  524. fastDFS:
  525. fastdfs_file_url: http://192.168.103.159:8888/
  526. fast-dfs:
  527. tracker-server: 192.168.103.159:22122 #服务器地址
  528. wechat:
  529. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  530. flag: false #演示环境 true走Mysql数据库 false走Oracle
  531. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  532. # 短信验证码发送的客户端标识,居民端
  533. sms:
  534. clientId: EwC0iRSrcP #todo 待配置
  535. myFamily:
  536. qrCodeFailurTime: 2
  537. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  538. demo:
  539. flag: false
  540. #支付支付
  541. pay:
  542. flag: true
  543. hospital:
  544. url: https://wx.xmzsh.com
  545. mqUser: JKZL
  546. mqPwd: 123456
  547. SourceSysCode: S60
  548. TargetSysCode: S01
  549. im:
  550. im_list_get: http://192.168.118.240:3000/
  551. data_base_name: im
  552. # 上传文件临时路径配置
  553. FileTempPath:
  554. upload_temp_path : /var/local/temp
  555. image_path : /var/local/upload/images
  556. voice_path : /var/local/upload/voice
  557. chat_file_path : /var/local/upload/chat
  558. es:
  559. pwflag: 1 # 1需要密码,2不需要密码
  560. index:
  561. Statistics: hlw_quota_test
  562. type:
  563. Statistics: hlw_quota_test
  564. host: http://192.168.103.153:9200
  565. tHost: 192.168.103.153:9300
  566. clusterName: jkzl
  567. securityUser: lion:jkzlehr
  568. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  569. testPattern:
  570. sign: 0
  571. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  572. wlyy:
  573. url: http://ehr.yihu.com/wlyy/
  574. qywx:
  575. url: https://ih.xmheart.com/hlwyy/
  576. id: xm_xzzx_wx
  577. express:
  578. sf_url: https://mrds-admin.sf-express.com:443
  579. sf_code: WH000101
  580. sf_check_word: EDSAFWFAQWyjt8099
  581. ---
  582. ##==心脏中心外 ===============================================================================
  583. spring:
  584. profiles: xzprod
  585. datasource:
  586. driver-class-name: com.mysql.jdbc.Driver
  587. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  588. username: jkzl
  589. password: jkzl@2020
  590. elasticsearch:
  591. cluster-name: jkzl #集群名 默认elasticsearch
  592. cluster-nodes: 172.16.100.240:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  593. client-transport-sniff: false
  594. jest:
  595. uris: http://172.16.100.240:9300
  596. connection-timeout: 60000 # Connection timeout in milliseconds.
  597. multi-threaded: true # Enable connection requests from multiple execution threads.
  598. activemq:
  599. broker-url: tcp://59.61.92.90:9103
  600. user: jkzl
  601. password: jkzlehr
  602. redis:
  603. host: 172.16.100.240 # Redis server host.
  604. port: 6380 # Redis server port.
  605. password: q4YaQemf
  606. fastDFS:
  607. fastdfs_file_url: http://172.16.100.240:8888/
  608. fast-dfs:
  609. tracker-server: 172.16.100.240:22122 #服务器地址
  610. wechat:
  611. id: xm_xzzx_wx # base库中,wx_wechat 的id字段 # todo 待配置
  612. flag: false #演示环境 true走Mysql数据库 false走Oracle
  613. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  614. # 短信验证码发送的客户端标识,居民端
  615. sms:
  616. clientId: EwC0iRSrcP #todo 待配置
  617. myFamily:
  618. qrCodeFailurTime: 2
  619. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  620. demo:
  621. flag: false
  622. #支付支付
  623. pay:
  624. flag: true
  625. hospital:
  626. url: https://wx.xmzsh.com
  627. mqUser: JKZL
  628. mqPwd: 123456
  629. SourceSysCode: S60
  630. TargetSysCode: S01
  631. im:
  632. im_list_get: http://172.16.100.65:3000/
  633. data_base_name: im
  634. # 上传文件临时路径配置
  635. FileTempPath:
  636. upload_temp_path : /var/local/temp
  637. image_path : /var/local/upload/images
  638. voice_path : /var/local/upload/voice
  639. chat_file_path : /var/local/upload/chat
  640. es:
  641. pwflag: 1 # 1需要密码,2不需要密码
  642. index:
  643. Statistics: hlw_quota_prod
  644. type:
  645. Statistics: hlw_quota_prod
  646. host: http://172.16.100.240:9200
  647. tHost: 172.16.100.240:9300
  648. clusterName: jkzl
  649. securityUser: lion:jkzlehr
  650. user: lion
  651. password: jkzlehr
  652. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  653. testPattern:
  654. sign: 2
  655. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  656. wlyy:
  657. url: http://ehr.yihu.com/wlyy/
  658. qywx:
  659. url: https://ih.xmheart.com/hlwyy/
  660. id: xm_xzzx_wx
  661. express:
  662. sf_url: https://mrds-admin.sf-express.com:443
  663. sf_code: WH000101
  664. sf_check_word: EDSAFWFAQWyjt8099
  665. ---
  666. ##==厦门卫计委 ===============================================================================
  667. spring:
  668. profiles: xmjwprod
  669. datasource:
  670. driver-class-name: com.mysql.jdbc.Driver
  671. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  672. username: wlyy
  673. password: qY#j2n5O
  674. elasticsearch:
  675. cluster-name: jkzl #集群名 默认elasticsearch
  676. cluster-nodes: 10.95.22.155:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  677. client-transport-sniff: false
  678. jest:
  679. uris: http://10.95.22.155:9300
  680. connection-timeout: 60000 # Connection timeout in milliseconds.
  681. multi-threaded: true # Enable connection requests from multiple execution threads.
  682. activemq:
  683. broker-url: tcp://59.61.92.90:9103
  684. user: jkzl
  685. password: jkzlehr
  686. redis:
  687. host: 59.61.92.90 # Redis server host.
  688. port: 9054 # Redis server port.
  689. password: jkzlehr
  690. fastDFS:
  691. fastdfs_file_url: http://192.168.103.159:8888/
  692. fast-dfs:
  693. tracker-server: 192.168.103.159:22122 #服务器地址
  694. wechat:
  695. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  696. flag: false #演示环境 true走Mysql数据库 false走Oracle
  697. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  698. # 短信验证码发送的客户端标识,居民端
  699. sms:
  700. clientId: EwC0iRSrcP #todo 待配置
  701. myFamily:
  702. qrCodeFailurTime: 2
  703. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  704. demo:
  705. flag: false
  706. #支付支付
  707. pay:
  708. flag: true
  709. hospital:
  710. url: https://wx.xmzsh.com
  711. mqUser: JKZL
  712. mqPwd: 123456
  713. SourceSysCode: S60
  714. TargetSysCode: S01
  715. im:
  716. im_list_get: http://172.16.1.42:3000/
  717. data_base_name: im
  718. # 上传文件临时路径配置
  719. FileTempPath:
  720. upload_temp_path : /var/local/temp
  721. image_path : /var/local/upload/images
  722. voice_path : /var/local/upload/voice
  723. chat_file_path : /var/local/upload/chat
  724. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  725. testPattern:
  726. sign: 1
  727. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  728. wlyy:
  729. url: http://www.xmtyw.cn/wlyytest/
  730. es:
  731. pwflag: 0 # 1需要密码,0不需要密码
  732. index:
  733. Statistics: hlw_quota_prod
  734. type:
  735. Statistics: hlw_quota_prod
  736. host: http://172.16.100.240:9200
  737. tHost: 172.16.100.240:9300
  738. clusterName: jkzl
  739. securityUser: lion:jkzlehr
  740. user: lion
  741. password: jkzlehr
  742. qywx:
  743. url: 1
  744. id: 2
  745. express:
  746. sf_url: https://mrds-admin.sf-express.com:443
  747. sf_code:
  748. sf_check_word:
  749. ---
  750. spring:
  751. profiles: jwystest
  752. datasource:
  753. driver-class-name: com.mysql.jdbc.Driver
  754. url: jdbc:mysql://172.26.0.195/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  755. username: root
  756. password: jkzlehr
  757. # elasticsearch:
  758. # cluster-name: jkzl #集群名 默认elasticsearch
  759. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  760. # client-transport-sniff: false
  761. # jest:
  762. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  763. # connection-timeout: 60000 # Connection timeout in milliseconds.
  764. # multi-threaded: true # Enable connection requests from multiple execution threads.
  765. activemq:
  766. broker-url: tcp://172.26.0.116:61616
  767. user: admin
  768. password: admin
  769. redis:
  770. # host: 172.26.0.253 # Redis server host.
  771. host: 172.26.0.190 # Redis server host
  772. port: 6379 # Redis server port
  773. fastDFS:
  774. fastdfs_file_url: http://172.26.0.110:8888/
  775. fast-dfs:
  776. tracker-server: 172.26.0.110:22122 #服务器地址
  777. wechat:
  778. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  779. flag: true #演示环境 true走Mysql数据库 false走Oracle
  780. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  781. # 短信验证码发送的客户端标识,居民端
  782. sms:
  783. clientId: EwC0iRSrcP
  784. myFamily:
  785. qrCodeFailurTime: 2
  786. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  787. demo:
  788. flag: true
  789. #支付支付
  790. pay:
  791. flag: true
  792. hospital:
  793. url: https://wx.xmzsh.com
  794. mqUser: JKZL
  795. mqPwd: 123456
  796. SourceSysCode: S60
  797. TargetSysCode: S01
  798. im:
  799. im_list_get: http://172.26.0.193:3000/
  800. data_base_name: im_internet_hospital
  801. es:
  802. pwflag: 1 # 1需要密码,2不需要密码
  803. index:
  804. Statistics: hlw_quota_test
  805. type:
  806. Statistics: hlw_quota_test
  807. host: http://172.26.0.190:9200
  808. tHost: 172.26.0.190:9300
  809. clusterName: jkzl
  810. securityUser: elastic:changeme
  811. user: lion
  812. password: jkzlehr
  813. # 上传文件临时路径配置
  814. FileTempPath:
  815. upload_temp_path : /var/local/temp
  816. image_path : /var/local/upload/images
  817. voice_path : /var/local/upload/voice
  818. chat_file_path : /var/local/upload/chat
  819. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  820. testPattern:
  821. sign: 0
  822. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  823. wlyy:
  824. url: http://ehr.yihu.com/wlyy/
  825. qywx:
  826. url: 2
  827. id: 1
  828. express:
  829. sf_url: https://mrds-admin.sf-express.com:443
  830. sf_code: JKZL
  831. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  832. ---
  833. spring:
  834. profiles: tnJwprod
  835. datasource:
  836. driver-class-name: com.mysql.jdbc.Driver
  837. url: jdbc:mysql://10.9.1.247:3310/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  838. username: wlyy
  839. password: qY#j2n5O
  840. # elasticsearch:
  841. # cluster-name: jkzl #集群名 默认elasticsearch
  842. # cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  843. # client-transport-sniff: false
  844. # jest:
  845. # uris: http://192.0.33.26:9300
  846. # connection-timeout: 60000 # Connection timeout in milliseconds.
  847. # multi-threaded: true # Enable connection requests from multiple execution threads.
  848. activemq:
  849. broker-url: tcp://59.61.92.90:9103
  850. user: jkzl
  851. password: jkzlehr
  852. redis:
  853. host: 10.9.1.247 # Redis server host.
  854. port: 6380 # Redis server port.
  855. password: Kb6wKDQP1W4
  856. fastDFS:
  857. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  858. fast-dfs:
  859. tracker-server: 10.9.1.247:22122 #服务器地址
  860. wechat:
  861. id: sd_tnzyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  862. flag: true #演示环境 true走Mysql数据库 false走Oracle
  863. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  864. # 短信验证码发送的客户端标识,居民端
  865. sms:
  866. clientId: EwC0iRSrcP #todo 待配置
  867. myFamily:
  868. qrCodeFailurTime: 2
  869. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  870. demo:
  871. flag: true
  872. #支付支付
  873. pay:
  874. flag: true
  875. hospital:
  876. url: https://wx.xmzsh.com
  877. mqUser: JKZL
  878. mqPwd: 123456
  879. SourceSysCode: S60
  880. TargetSysCode: S01
  881. im:
  882. im_list_get: http://10.9.1.247:3000/
  883. data_base_name: im
  884. es:
  885. pwflag: 1 # 1需要密码,2不需要密码
  886. index:
  887. Statistics: hlw_quota_prod
  888. type:
  889. Statistics: hlw_quota_prod
  890. host: http://10.9.1.247:9200
  891. tHost: 10.9.1.247:9300
  892. clusterName: jkzl
  893. user: lion
  894. password: jkzlehr
  895. securityUser: lion:jkzlehr
  896. # 上传文件临时路径配置
  897. FileTempPath:
  898. upload_temp_path : /var/local/temp
  899. image_path : /var/local/upload/images
  900. voice_path : /var/local/upload/voice
  901. chat_file_path : /var/local/upload/chat
  902. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  903. testPattern:
  904. sign: 0
  905. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  906. wlyy:
  907. url: http://www.xmtyw.cn/wlyytest/
  908. qywx:
  909. url: https://hlwyy.xmzsh.com/hlwyy
  910. id: zsyy
  911. express:
  912. sf_url: https://mrds-admin.sf-express.com:443
  913. sf_code: WH000102
  914. sf_check_word: TGUQASFNAZyjt9112
  915. ---
  916. spring:
  917. profiles: dsyy
  918. datasource:
  919. driver-class-name: com.mysql.jdbc.Driver
  920. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  921. username: wlyy
  922. password: 2oEq3Kf7@zjxl
  923. activemq:
  924. broker-url: tcp://172.26.0.116:61616
  925. user: admin
  926. password: admin
  927. redis:
  928. host: 127.0.0.1 # Redis server host.
  929. port: 6380 # Redis server port.
  930. fastDFS:
  931. fastdfs_file_url: http://172.26.0.110:8888/
  932. fast-dfs:
  933. tracker-server: 172.26.0.110:22122 #服务器地址
  934. wechat:
  935. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  936. flag: false #演示环境 true走Mysql数据库 false走Oracle
  937. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  938. sms:
  939. clientId: EwC0iRSrcP
  940. myFamily:
  941. qrCodeFailurTime: 2
  942. demo:
  943. flag: true
  944. pay:
  945. flag: true
  946. hospital:
  947. url: https://wx.xmzsh.com
  948. mqUser: JKZL
  949. mqPwd: 123456
  950. SourceSysCode: S60
  951. TargetSysCode: S01
  952. im:
  953. im_list_get: http://172.26.0.105:3000/
  954. data_base_name: im_internet_hospital
  955. es:
  956. pwflag: 1 # 1需要密码,2不需要密码
  957. index:
  958. Statistics: hlw_quota_test
  959. type:
  960. Statistics: hlw_quota_test
  961. host: http://172.26.0.55:9000
  962. tHost: 172.26.0.55:9300
  963. clusterName: jkzl
  964. securityUser: lion:jkzlehr
  965. user: lion
  966. password: jkzlehr
  967. FileTempPath:
  968. upload_temp_path : /var/local/temp
  969. image_path : /var/local/upload/images
  970. voice_path : /var/local/upload/voice
  971. chat_file_path : /var/local/upload/chat
  972. testPattern:
  973. sign: 0
  974. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  975. wlyy:
  976. url: http://ehr.yihu.com/wlyy/
  977. qywx:
  978. url: 2
  979. id: 1
  980. express:
  981. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  982. sf_code: HD000001
  983. sf_check_word: AAAABBBBCCCCDDDD
  984. ---
  985. spring:
  986. profiles: hcyyProd
  987. datasource:
  988. driver-class-name: com.mysql.jdbc.Driver
  989. url: jdbc:mysql://192.168.120.103:6001/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  990. username: wlyy
  991. password: 2oEq3Kf7@zjxl
  992. activemq:
  993. broker-url: tcp://59.61.92.90:9103
  994. user: jkzl
  995. password: jkzlehr
  996. redis:
  997. host: 192.168.120.103 # Redis server host.
  998. port: 6007 # Redis server port.
  999. password: Kb6wKDQP1W4
  1000. fastDFS:
  1001. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  1002. fast-dfs:
  1003. tracker-server: 192.168.120.103:6002 #服务器地址
  1004. wechat:
  1005. id: xm_hcyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  1006. flag: true #演示环境 true走Mysql数据库 false走Oracle
  1007. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  1008. sms:
  1009. clientId: EwC0iRSrcP #todo 待配置
  1010. myFamily:
  1011. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1012. demo:
  1013. flag: true #支付支付
  1014. pay:
  1015. flag: true
  1016. hospital:
  1017. url: https://wx.xmzsh.com
  1018. mqUser: JKZL
  1019. mqPwd: 123456
  1020. SourceSysCode: S60
  1021. TargetSysCode: S01
  1022. im:
  1023. im_list_get: http://127.0.0.1:3000/
  1024. data_base_name: im
  1025. es:
  1026. pwflag: 1 # 1需要密码,2不需要密码
  1027. index:
  1028. Statistics: hlw_quota_prod
  1029. type:
  1030. Statistics: hlw_quota_prod
  1031. host: http://192.168.120.103:6005
  1032. tHost: 192.168.120.103:6006
  1033. securityUser: elastic:elastic
  1034. clusterName: jkzl
  1035. user: lion
  1036. password: jkzlehr
  1037. FileTempPath: # 上传文件临时路径配置
  1038. upload_temp_path : /var/local/temp
  1039. image_path : /var/local/upload/images
  1040. voice_path : /var/local/upload/voice
  1041. chat_file_path : /var/local/upload/chat
  1042. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1043. sign: 0
  1044. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1045. wlyy:
  1046. url: http://www.xmtyw.cn/wlyytest/
  1047. qywx:
  1048. url: https://hlwyy.xmzsh.com/hlwyy
  1049. id: zsyy
  1050. express:
  1051. sf_url: https://mrds-admin.sf-express.com:443
  1052. sf_code: WH000102
  1053. sf_check_word: TGUQASFNAZyjt9112
  1054. ---
  1055. spring:
  1056. profiles: yqfk
  1057. datasource:
  1058. driver-class-name: com.mysql.jdbc.Driver
  1059. url: jdbc:mysql://10.90.32.3:22042/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1060. username: jkzl_root
  1061. password: jkzlehr@2020%
  1062. activemq:
  1063. broker-url: tcp://59.61.92.90:9103
  1064. user: jkzl
  1065. password: jkzlehr
  1066. redis:
  1067. host: 127.0.0.1 # Redis server host.
  1068. port: 6380 # Redis server port.
  1069. password: Kb6wKDQP1W4
  1070. fastDFS:
  1071. fastdfs_file_url: https://hlwyy.xmzsh.com/fastdfs/
  1072. fast-dfs:
  1073. tracker-server: 192.168.120.103:6002 #服务器地址
  1074. wechat:
  1075. id: xm_hcyy_wx # base库中,wx_wechat 的id字段 # todo 待配置
  1076. flag: true #演示环境 true走Mysql数据库 false走Oracle
  1077. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage # 短信验证码发送的客户端标识,居民端
  1078. sms:
  1079. clientId: EwC0iRSrcP #todo 待配置
  1080. myFamily:
  1081. qrCodeFailurTime: 2 # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1082. demo:
  1083. flag: true #支付支付
  1084. pay:
  1085. flag: true
  1086. hospital:
  1087. url: https://wx.xmzsh.com
  1088. mqUser: JKZL
  1089. mqPwd: 123456
  1090. SourceSysCode: S60
  1091. TargetSysCode: S01
  1092. im:
  1093. im_list_get: http://127.0.0.1:3000/
  1094. data_base_name: im
  1095. es:
  1096. pwflag: 1 # 1需要密码,2不需要密码
  1097. index:
  1098. Statistics: hlw_quota_prod
  1099. type:
  1100. Statistics: hlw_quota_prod
  1101. host: http://192.168.120.103:6005
  1102. tHost: 192.168.120.103:6006
  1103. securityUser: elastic:elastic
  1104. clusterName: jkzl
  1105. user: lion
  1106. password: jkzlehr
  1107. FileTempPath: # 上传文件临时路径配置
  1108. upload_temp_path : /var/local/temp
  1109. image_path : /var/local/upload/images
  1110. voice_path : /var/local/upload/voice
  1111. chat_file_path : /var/local/upload/chat
  1112. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1113. sign: 0
  1114. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1115. wlyy:
  1116. url: http://www.xmtyw.cn/wlyytest/
  1117. qywx:
  1118. url: https://hlwyy.xmzsh.com/hlwyy
  1119. id: zsyy
  1120. express:
  1121. sf_url: https://mrds-admin.sf-express.com:443
  1122. sf_code: WH000102
  1123. sf_check_word: TGUQASFNAZyjt9112
  1124. ---
  1125. spring:
  1126. profiles: ZjxlProd
  1127. datasource:
  1128. driver-class-name: com.mysql.jdbc.Driver
  1129. url: jdbc:mysql://172.26.0.13:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1130. username: root
  1131. password: jkzlehr
  1132. # elasticsearch:
  1133. # cluster-name: jkzl #集群名 默认elasticsearch
  1134. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  1135. # client-transport-sniff: false
  1136. # jest:
  1137. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  1138. # connection-timeout: 60000 # Connection timeout in milliseconds.
  1139. # multi-threaded: true # Enable connection requests from multiple execution threads.
  1140. activemq:
  1141. broker-url: tcp://172.26.0.116:61616
  1142. user: admin
  1143. password: admin
  1144. redis:
  1145. host: 172.26.0.253 # Redis server host.
  1146. port: 6379 # Redis server port.
  1147. fastDFS:
  1148. fastdfs_file_url: http://172.26.0.110:8888/
  1149. fast-dfs:
  1150. tracker-server: 172.26.0.110:22122 #服务器地址
  1151. wechat:
  1152. id: xm_zjxl_wx # base库中,wx_wechat 的id字段
  1153. flag: false #演示环境 true走Mysql数据库 false走Oracle
  1154. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  1155. # 短信验证码发送的客户端标识,居民端
  1156. sms:
  1157. clientId: EwC0iRSrcP
  1158. myFamily:
  1159. qrCodeFailurTime: 2
  1160. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1161. demo:
  1162. flag: true
  1163. #支付支付
  1164. pay:
  1165. flag: true
  1166. hospital:
  1167. url: https://wx.xmzsh.com
  1168. mqUser: JKZL
  1169. mqPwd: 123456
  1170. SourceSysCode: S60
  1171. TargetSysCode: S01
  1172. im:
  1173. im_list_get: http://172.26.0.105:3000/
  1174. data_base_name: im_internet_hospital
  1175. es:
  1176. pwflag: 1 # 1需要密码,2不需要密码
  1177. index:
  1178. Statistics: hlw_quota_test
  1179. type:
  1180. Statistics: hlw_quota_test
  1181. host: http://172.26.0.55:9000
  1182. tHost: 172.26.0.55:9300
  1183. clusterName: jkzl
  1184. securityUser: lion:jkzlehr
  1185. user: lion
  1186. password: jkzlehr
  1187. # 上传文件临时路径配置
  1188. FileTempPath:
  1189. upload_temp_path : /var/local/temp
  1190. image_path : /var/local/upload/images
  1191. voice_path : /var/local/upload/voice
  1192. chat_file_path : /var/local/upload/chat
  1193. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1194. testPattern:
  1195. sign: 0
  1196. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1197. wlyy:
  1198. url: http://ehr.yihu.com/wlyy/
  1199. qywx:
  1200. url: 2
  1201. id: 1
  1202. express:
  1203. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  1204. sf_code: HD000001
  1205. sf_check_word: AAAABBBBCCCCDDDD
  1206. ---
  1207. spring:
  1208. profiles: mlwProd
  1209. datasource:
  1210. driver-class-name: com.mysql.jdbc.Driver
  1211. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  1212. username: root
  1213. password: 4D^tK%!4
  1214. # elasticsearch:
  1215. # cluster-name: jkzl #集群名 默认elasticsearch
  1216. # cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  1217. # client-transport-sniff: false
  1218. # jest:
  1219. # uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  1220. # connection-timeout: 60000 # Connection timeout in milliseconds.
  1221. # multi-threaded: true # Enable connection requests from multiple execution threads.
  1222. activemq:
  1223. broker-url: tcp://172.26.0.116:61616
  1224. user: admin
  1225. password: admin
  1226. redis:
  1227. host: 127.0.0.1 # Redis server host.
  1228. port: 6379 # Redis server port.
  1229. password: Kb6wKDQP1W4
  1230. fastDFS:
  1231. fastdfs_file_url: http://127.0.0.1:8888/
  1232. fast-dfs:
  1233. tracker-server: 127.0.0.1:22122 #服务器地址
  1234. wechat:
  1235. id: xm_zjxl_wx # base库中,wx_wechat 的id字段
  1236. flag: false #演示环境 true走Mysql数据库 false走Oracle
  1237. url: http://172.16.100.37:8090/hospitalPortal-sms/sms/sendMessage
  1238. # 短信验证码发送的客户端标识,居民端
  1239. sms:
  1240. clientId: EwC0iRSrcP
  1241. myFamily:
  1242. qrCodeFailurTime: 2
  1243. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  1244. demo:
  1245. flag: true
  1246. #支付支付
  1247. pay:
  1248. flag: true
  1249. hospital:
  1250. url: https://wx.xmzsh.com
  1251. mqUser: JKZL
  1252. mqPwd: 123456
  1253. SourceSysCode: S60
  1254. TargetSysCode: S01
  1255. im:
  1256. im_list_get: http://172.26.0.105:3000/
  1257. data_base_name: im_internet_hospital
  1258. es:
  1259. pwflag: 1 # 1需要密码,2不需要密码
  1260. index:
  1261. Statistics: hlw_quota_test
  1262. type:
  1263. Statistics: hlw_quota_test
  1264. host: http://172.26.0.55:9000
  1265. tHost: 172.26.0.55:9300
  1266. clusterName: jkzl
  1267. securityUser: lion:jkzlehr
  1268. user: lion
  1269. password: jkzlehr
  1270. # 上传文件临时路径配置
  1271. FileTempPath:
  1272. upload_temp_path : /var/local/temp
  1273. image_path : /var/local/upload/images
  1274. voice_path : /var/local/upload/voice
  1275. chat_file_path : /var/local/upload/chat
  1276. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  1277. testPattern:
  1278. sign: 0
  1279. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  1280. wlyy:
  1281. url: http://ehr.yihu.com/wlyy/
  1282. qywx:
  1283. url: 2
  1284. id: 1
  1285. express:
  1286. sf_url: http://mrds-admin-ci.sit.sf-express.com:45478
  1287. sf_code: HD000001
  1288. sf_check_word: AAAABBBBCCCCDDDD