application.yml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. server:
  2. port: 10260
  3. spring:
  4. datasource:
  5. hikari:
  6. registerMbeans: true
  7. driver-class-name: com.mysql.cj.jdbc.Driver
  8. max-active: 100
  9. max-idle: 100 #最大空闲连接
  10. min-idle: 10 #最小空闲连接
  11. validation-query-timeout: 20
  12. connection-timeout: 60000
  13. validation-timeout: 3000
  14. max-lifetime: 60000
  15. login-timeout: 5
  16. maximum-pool-size: 60
  17. minimum-idle: 10
  18. log-validation-errors: true
  19. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  20. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  21. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  22. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  23. idle-timeout: 60000
  24. connection-test-query: SELECT 1
  25. num-tests-per-eviction-run: 100 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  26. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  27. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  28. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  29. main:
  30. allow-bean-definition-overriding: true
  31. redis:
  32. database: 0 # Database index used by the connection factory.
  33. timeout: 0 # Connection timeout in milliseconds.
  34. pool:
  35. max-active: 8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.
  36. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  37. max-wait: -1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
  38. min-idle: 1 # Target for the minimum number of idle connections to maintain in the pool. This settings only has an effect if it is positive.
  39. user:
  40. autoUnlockTime: 5 #账户锁定后,自动解锁时间 以分钟计算
  41. reflashFailedCountTime: 5 #将失败次数重置为0
  42. tryLoginTimes: 5 #失败重试次数
  43. fast-dfs:
  44. tracker-server: 192.0.33.26:22122 #服务器地址
  45. connect-timeout: 2 #链接超时时间
  46. network-timeout: 30
  47. charset: ISO8859-1 #编码
  48. http:
  49. tracker-http-port: 80
  50. anti-steal-token: no
  51. secret-key: FastDFS1234567890
  52. pool: #连接池大小
  53. init-size: 5
  54. max-size: 20
  55. wait-time: 500
  56. ---
  57. spring:
  58. profiles: jwdev
  59. ##发现服务
  60. datasource:
  61. url: jdbc:mysql://172.26.0.114/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  62. username: ssgg
  63. password: ssgg@jkzl2019
  64. redis:
  65. host: 172.26.0.253 # Redis server host.
  66. port: 6379 # Redis server port.
  67. # i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  68. iHealth:
  69. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  70. zhongshanHospital:
  71. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  72. fastDFS:
  73. fastdfs_file_url: http://172.26.0.110:8888/
  74. wlyy:
  75. url: http://www.xmtyw.cn/wlyy/
  76. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  77. testPattern:
  78. sign: 0
  79. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  80. kick:
  81. ##互踢 1开通 0关闭
  82. eachOther: 1
  83. im:
  84. im_list_get: http://172.26.0.105:3000/
  85. wechat:
  86. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  87. ---
  88. spring:
  89. profiles: mlwTest
  90. datasource:
  91. url: jdbc:mysql://172.26.0.104/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  92. username: root
  93. password: jkzlehr
  94. redis:
  95. host: 172.26.0.253 # Redis server host.
  96. port: 6379 # Redis server port.
  97. ##发现服务
  98. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  99. iHealth:
  100. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  101. zhongshanHospital:
  102. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  103. fastDFS:
  104. fastdfs_file_url: http://172.26.0.110:8888/
  105. wlyy:
  106. url: http://www.xmtyw.cn/wlyy/
  107. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  108. testPattern:
  109. sign: 0
  110. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  111. wechat:
  112. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  113. im:
  114. im_list_get: http://172.26.0.105:3000/
  115. kick:
  116. ##互踢 1开通 0关闭
  117. eachOther: 0
  118. ---
  119. spring:
  120. profiles: jwOracleTest
  121. datasource:
  122. driver-class-name: oracle.jdbc.driver.OracleDriver
  123. url: jdbc:oracle:thin:@172.26.0.141:1521:helowin
  124. username: normal
  125. password: normal
  126. jpa:
  127. properties:
  128. hibernate:
  129. dialect: org.hibernate.dialect.Oracle10gDialect
  130. show_sql: true
  131. database: oracle
  132. # datasource:
  133. # url: jdbc:mysql://172.26.0.104/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  134. # username: root
  135. # password: jkzlehr
  136. redis:
  137. host: 172.26.0.253 # Redis server host.
  138. port: 6379 # Redis server port.
  139. ##发现服务
  140. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  141. iHealth:
  142. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  143. zhongshanHospital:
  144. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  145. fastDFS:
  146. fastdfs_file_url: http://172.26.0.110:8888/
  147. wlyy:
  148. url: http://www.xmtyw.cn/wlyy/
  149. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  150. testPattern:
  151. sign: 0
  152. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  153. wechat:
  154. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  155. im:
  156. im_list_get: http://172.26.0.105:3000/
  157. kick:
  158. ##互踢 1开通 0关闭
  159. eachOther: 1
  160. ---
  161. spring:
  162. profiles: iottest
  163. datasource:
  164. url: jdbc:mysql://172.26.0.104/iot-base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  165. username: root
  166. password: jkzlehr
  167. redis:
  168. host: 172.26.0.253 # Redis server host.
  169. port: 6379 # Redis server port.
  170. ##发现服务
  171. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  172. iHealth:
  173. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  174. zhongshanHospital:
  175. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  176. fastDFS:
  177. fastdfs_file_url: http://172.26.0.110:8888/
  178. wlyy:
  179. url: http://www.xmtyw.cn/wlyy/
  180. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  181. testPattern:
  182. sign: 0
  183. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  184. wechat:
  185. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  186. im:
  187. im_list_get: http://172.26.0.105:3000/
  188. kick:
  189. ##互踢 1开通 0关闭
  190. eachOther: 1
  191. ---
  192. spring:
  193. profiles: iotyanshi
  194. datasource:
  195. url: jdbc:mysql://172.26.0.195/iot-base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  196. username: root
  197. password: jkzlehr
  198. redis:
  199. host: 172.26.0.190 # Redis server host.
  200. port: 6379 # Redis server port.
  201. ##发现服务
  202. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  203. iHealth:
  204. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  205. zhongshanHospital:
  206. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  207. fastDFS:
  208. fastdfs_file_url: http://172.26.0.110:8888/
  209. wlyy:
  210. url: http://www.xmtyw.cn/wlyy/
  211. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  212. testPattern:
  213. sign: 0
  214. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  215. wechat:
  216. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  217. im:
  218. im_list_get: http://172.26.0.105:3000/
  219. kick:
  220. ##互踢 1开通 0关闭
  221. eachOther: 1
  222. ---
  223. spring:
  224. profiles: jwprod
  225. datasource:
  226. url: jdbc:mysql://172.16.1.42/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  227. username: im
  228. password: 2oEq3Kf7
  229. redis:
  230. host: 192.0.33.26 # Redis server host.
  231. port: 6390 # Redis server port.
  232. password: Kb6wKDQP1W4
  233. ##发现服务
  234. iHealth:
  235. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  236. zhongshanHospital:
  237. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  238. fastDFS:
  239. fastdfs_file_url: http://192.0.33.26:22122
  240. wlyy:
  241. url: http://www.xmtyw.cn/wlyy/
  242. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  243. testPattern:
  244. sign: 0
  245. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  246. wechat:
  247. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  248. im:
  249. im_list_get: http://172.26.0.105:3000/
  250. kick:
  251. ##互踢 1开通 0关闭
  252. eachOther: 1
  253. ---
  254. ## 心脏中心外网
  255. spring:
  256. profiles: xzprod
  257. datasource:
  258. url: jdbc:mysql://172.16.100.240:7306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  259. username: jzkl
  260. password: jzkl@2020
  261. redis:
  262. host: 172.16.100.240 # Redis server host.
  263. port: 6380 # Redis server port.
  264. password: q4YaQemf
  265. ##发现服务
  266. iHealth:
  267. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  268. zhongshanHospital:
  269. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  270. fastDFS:
  271. fastdfs_file_url: http://172.16.100.240:22122
  272. wlyy:
  273. url: http://www.xmtyw.cn/wlyy/
  274. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  275. testPattern:
  276. sign: 2
  277. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  278. wechat:
  279. id: xm_xzzx_wx # base库中,wx_wechat 的id字段
  280. im:
  281. im_list_get: http://172.26.0.105:3000/
  282. kick:
  283. ##互踢 1开通 0关闭
  284. eachOther: 1
  285. ---
  286. ## 卫计委
  287. spring:
  288. profiles: xmjwprod
  289. datasource:
  290. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  291. username: wlyy
  292. password: qY#j2n5O
  293. redis:
  294. host: 59.61.92.90 # Redis server host.
  295. port: 9206 # Redis server port.
  296. password: jkzlehr
  297. ##发现服务
  298. iHealth:
  299. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  300. zhongshanHospital:
  301. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  302. fastDFS:
  303. fastdfs_file_url: http://192.168.103.159:22122
  304. wlyy:
  305. url: http://www.xmtyw.cn/wlyy/
  306. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  307. testPattern:
  308. sign: 1
  309. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  310. wechat:
  311. id: xm_ihealth_wx # base库中,wx_wechat 的id字段
  312. im:
  313. im_list_get: http://172.26.0.105:3000/
  314. kick:
  315. ##互踢 1开通 0关闭
  316. eachOther: 1
  317. ---
  318. spring:
  319. profiles: iotprod
  320. datasource:
  321. url: jdbc:mysql://59.61.92.90:20002/iot-base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  322. username: wlyy_new
  323. password: '@TaVAj%LEK@vB2J4&y9sk@TaVAj%LEK'
  324. redis:
  325. host: 59.61.92.90 # Redis server host.
  326. port: 9054 # Redis server port.
  327. password: o!a1#B74&m
  328. ##发现服务
  329. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  330. iHealth:
  331. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  332. fastDFS:
  333. fastdfs_file_url: http://172.26.0.110:8888/
  334. wlyy:
  335. url: http://www.xmtyw.cn/wlyy/
  336. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  337. testPattern:
  338. sign: 0
  339. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  340. wechat:
  341. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  342. im:
  343. im_list_get: http://172.26.0.105:3000/
  344. kick:
  345. ##互踢 1开通 0关闭
  346. eachOther: 1
  347. ---
  348. spring:
  349. profiles: iotprodIn
  350. datasource:
  351. url: jdbc:mysql://10.95.22.143:3306/iot-base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  352. username: wlyy_new
  353. password: '@TaVAj%LEK@vB2J4&y9sk@TaVAj%LEK'
  354. redis:
  355. host: 10.95.22.142 # Redis server host.
  356. port: 6380 # Redis server port.
  357. password: o!a1#B74&m
  358. ##发现服务
  359. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  360. iHealth:
  361. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  362. fastDFS:
  363. fastdfs_file_url: http://172.26.0.110:8888/
  364. wlyy:
  365. url: http://10.95.22.10:8011/wlyy/
  366. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  367. testPattern:
  368. sign: 0
  369. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  370. wechat:
  371. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  372. im:
  373. im_list_get: http://172.26.0.105:3000/
  374. kick:
  375. ##互踢 1开通 0关闭
  376. eachOther: 1
  377. ---
  378. spring:
  379. profiles: jwystest
  380. datasource:
  381. url: jdbc:mysql://172.26.0.195/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  382. username: root
  383. password: jkzlehr
  384. redis:
  385. host: 172.26.0.190 # Redis server host.
  386. port: 6379 # Redis server port.
  387. ##发现服务
  388. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  389. iHealth:
  390. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  391. zhongshanHospital:
  392. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  393. fastDFS:
  394. fastdfs_file_url: http://172.26.0.110:8888/
  395. wlyy:
  396. url: http://www.xmtyw.cn/wlyy/
  397. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  398. testPattern:
  399. sign: 0
  400. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  401. wechat:
  402. id: xm_ykyy_wx # base库中,wx_wechat 的id字段
  403. im:
  404. im_list_get: http://172.26.0.105:3000/
  405. kick:
  406. ##互踢 1开通 0关闭
  407. eachOther: 1
  408. ---
  409. spring:
  410. profiles: tnJwprod
  411. datasource:
  412. url: jdbc:mysql://10.9.1.247:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  413. username: wlyy
  414. password: qY#j2n5O
  415. redis:
  416. host: 10.9.1.247 # Redis server host.
  417. port: 6380 # Redis server port.
  418. password: Kb6wKDQP1W4
  419. ##发现服务
  420. iHealth:
  421. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  422. zhongshanHospital:
  423. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  424. fastDFS:
  425. fastdfs_file_url: http://10.9.1.247:22122
  426. wlyy:
  427. url: http://www.xmtyw.cn/wlyy/
  428. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  429. testPattern:
  430. sign: 0
  431. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  432. wechat:
  433. id: sd_tnzyy_wx # base库中,wx_wechat 的id字段
  434. im:
  435. im_list_get: http://172.26.0.105:3000/
  436. kick:
  437. ##互踢 1开通 0关闭
  438. eachOther: 1
  439. ---
  440. spring:
  441. profiles: hzprod
  442. datasource:
  443. url: jdbc:mysql://10.18.43.40:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  444. username: wlyy
  445. password: '0XxS3W*!cRj'
  446. redis:
  447. host: 10.18.43.40 # Redis server host.
  448. port: 6379 # Redis server port.
  449. password: Kb6wKDQP1W4
  450. ##发现服务
  451. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  452. iHealth:
  453. user-info-uri: 1
  454. zhongshanHospital:
  455. user-info-uri: 1
  456. fastDFS:
  457. fastdfs_file_url: http://10.18.43.40:8888/
  458. wlyy:
  459. url: 1
  460. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  461. testPattern:
  462. sign: 0
  463. remote_inner_url: 1
  464. wechat:
  465. id: hz_yyyzh_wx # base库中,wx_wechat 的id字段
  466. im:
  467. im_list_get: http://10.18.43.41:3000/
  468. kick:
  469. ##互踢 1开通 0关闭
  470. eachOther: 0
  471. ---
  472. spring:
  473. profiles: wjwProd
  474. datasource:
  475. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  476. username: wlyy
  477. password: 0XxS3W*!cRj
  478. redis:
  479. host: 127.0.0.1 # Redis server host.
  480. port: 6380 # Redis server port.
  481. password: Kb6wKDQP1W4
  482. iHealth:
  483. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  484. zhongshanHospital:
  485. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  486. fastDFS:
  487. fastdfs_file_url: http://127.0.0.1:22122
  488. wlyy:
  489. url: http://www.xmtyw.cn/wlyy/
  490. testPattern:
  491. sign: 0
  492. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  493. wechat:
  494. id: wjw
  495. im:
  496. im_list_get: http://172.26.0.105:3000/
  497. kick:
  498. ##互踢 1开通 0关闭
  499. eachOther: 1
  500. ---
  501. spring:
  502. profiles: dsyy
  503. datasource:
  504. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  505. username: wlyy
  506. password: 2oEq3Kf7@zjxl
  507. redis:
  508. host: 127.0.0.1 # Redis server host.
  509. port: 6379 # Redis server port.
  510. iHealth:
  511. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  512. zhongshanHospital:
  513. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  514. fastDFS:
  515. fastdfs_file_url: http://172.26.0.110:8888/
  516. wlyy:
  517. url: http://www.xmtyw.cn/wlyy/
  518. testPattern:
  519. sign: 0
  520. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  521. kick:
  522. eachOther: 1
  523. im:
  524. im_list_get: http://172.26.0.105:3000/
  525. wechat:
  526. id: xm_dsyy_wx
  527. ---
  528. spring:
  529. profiles: hcyyProd
  530. datasource:
  531. url: jdbc:mysql://192.168.120.103:6001/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  532. username: wlyy
  533. password: 2oEq3Kf7@zjxl
  534. redis:
  535. host: 192.168.120.103 # Redis server host.
  536. port: 6007 # Redis server port.
  537. password: Kb6wKDQP1W4
  538. iHealth:
  539. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  540. zhongshanHospital:
  541. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  542. fastDFS:
  543. fastdfs_file_url: http://192.168.120.103:6002
  544. wlyy:
  545. url: http://www.xmtyw.cn/wlyy/
  546. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  547. sign: 0
  548. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  549. wechat:
  550. id: xm_hcyy_wx # base库中,wx_wechat 的id字段
  551. im:
  552. im_list_get: http://127.0.0.1:3000/
  553. kick:
  554. eachOther: 1 #互踢 1开通 0关闭
  555. ---
  556. spring:
  557. profiles: yqfk
  558. datasource:
  559. url: jdbc:mysql://10.90.32.3:22042/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  560. username: jkzl_root
  561. password: jkzlehr@2020%
  562. redis:
  563. host: 127.0.0.1 # Redis server host.
  564. port: 6380 # Redis server port.
  565. password: Kb6wKDQP1W4
  566. iHealth:
  567. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  568. zhongshanHospital:
  569. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  570. fastDFS:
  571. fastdfs_file_url: http://192.168.120.103:6002
  572. wlyy:
  573. url: http://www.xmtyw.cn/wlyy/
  574. testPattern: #文件服务器上传配置 0本地,1.I健康,2.内网调用
  575. sign: 0
  576. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  577. wechat:
  578. id: xm_hcyy_wx # base库中,wx_wechat 的id字段
  579. im:
  580. im_list_get: http://127.0.0.1:3000/
  581. kick:
  582. eachOther: 1 #互踢 1开通 0关闭
  583. ---
  584. spring:
  585. profiles: jwZnyg
  586. datasource:
  587. url: jdbc:mysql://172.26.0.222:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  588. username: root
  589. password: jkzlehr
  590. redis:
  591. host: 172.26.0.222 # Redis server host.
  592. port: 6379 # Redis server port.
  593. password: Kb6wKDQP1W4
  594. ##发现服务
  595. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  596. iHealth:
  597. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  598. zhongshanHospital:
  599. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  600. fastDFS:
  601. fastdfs_file_url: http://172.26.0.222:8888/
  602. wlyy:
  603. url: http://www.xmtyw.cn/wlyy/
  604. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  605. testPattern:
  606. sign: 0
  607. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  608. wechat:
  609. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  610. im:
  611. im_list_get: http://172.26.0.105:3000/
  612. kick:
  613. ##互踢 1开通 0关闭
  614. eachOther: 0
  615. ---
  616. spring:
  617. profiles: jwZnygProd
  618. datasource:
  619. url: jdbc:mysql://59.61.92.90:9409/medicine?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  620. username: wlyy
  621. password: qY#j2n5O
  622. redis:
  623. host: 59.61.92.90
  624. port: 9054
  625. password: jkzlehr
  626. iHealth:
  627. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  628. zhongshanHospital:
  629. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  630. fastDFS:
  631. fastdfs_file_url: http://172.26.0.222:8888/
  632. wlyy:
  633. url: http://www.xmtyw.cn/wlyy/
  634. testPattern:
  635. sign: 1
  636. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  637. wechat:
  638. id: xm_zsyy_wx
  639. im:
  640. im_list_get: http://172.26.0.105:3000/
  641. kick:
  642. eachOther: 0
  643. ---
  644. spring:
  645. profiles: ZjxlProd
  646. datasource:
  647. url: jdbc:mysql://172.26.0.13:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  648. username: root
  649. password: jkzlehr
  650. redis:
  651. host: 172.26.0.253 # Redis server host.
  652. port: 6379 # Redis server port.
  653. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  654. iHealth:
  655. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  656. zhongshanHospital:
  657. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  658. fastDFS:
  659. fastdfs_file_url: http://172.26.0.110:8888/
  660. wlyy:
  661. url: http://www.xmtyw.cn/wlyy/
  662. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  663. testPattern:
  664. sign: 0
  665. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  666. wechat:
  667. id: xm_zsyy_wx # base库中,wx_wechat 的id字段
  668. im:
  669. im_list_get: http://172.26.0.105:3000/
  670. kick:
  671. ##互踢 1开通 0关闭
  672. eachOther: 0
  673. ---
  674. spring:
  675. profiles: mlwProd
  676. datasource:
  677. url: jdbc:mysql://127.0.0.1:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  678. username: root
  679. password: 4D^tK%!4
  680. redis:
  681. host: 127.0.0.1 # Redis server host.
  682. port: 6379 # Redis server port.
  683. password: Kb6wKDQP1W4
  684. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  685. iHealth:
  686. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  687. zhongshanHospital:
  688. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  689. fastDFS:
  690. fastdfs_file_url: http://172.26.0.110:8888/
  691. wlyy:
  692. url: http://www.xmtyw.cn/wlyy/
  693. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  694. testPattern:
  695. sign: 0
  696. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  697. wechat:
  698. id: xm_mlwyy_wx # base库中,wx_wechat 的id字段
  699. im:
  700. im_list_get: http://172.26.0.105:3000/
  701. kick:
  702. ##互踢 1开通 0关闭
  703. eachOther: 0
  704. ---
  705. spring:
  706. profiles: mlwTest
  707. datasource:
  708. url: jdbc:mysql://172.26.0.114:3306/base?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  709. username: root
  710. password: 4D^tK%!4
  711. redis:
  712. host: 172.26.0.253 # Redis server host.
  713. port: 6390 # Redis server port.
  714. password: Kb6wKDQP1W4
  715. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  716. iHealth:
  717. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  718. zhongshanHospital:
  719. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  720. fastDFS:
  721. fastdfs_file_url: http://172.26.0.110:8888/
  722. wlyy:
  723. url: http://www.xmtyw.cn/wlyy/
  724. #文件服务器上传配置 0本地,1.I健康,2.内网调用
  725. testPattern:
  726. sign: 0
  727. remote_inner_url: 172.16.100.240:10023/open/fileUpload/upload_stream
  728. wechat:
  729. id: xm_mlwyy_wx # base库中,wx_wechat 的id字段
  730. im:
  731. im_list_get: http://172.26.0.105:3000/
  732. kick:
  733. ##互踢 1开通 0关闭
  734. eachOther: 0