svr-internet-hospital.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #通用的配置不用区分环境变量
  2. server:
  3. port: ${server.svr-internet-hospital-port}
  4. spring:
  5. datasource:
  6. driver-class-name: com.mysql.jdbc.Driver
  7. max-active: 50
  8. max-idle: 50 #最大空闲连接
  9. min-idle: 10 #最小空闲连接
  10. validation-query-timeout: 20
  11. log-validation-errors: true
  12. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  13. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  14. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  15. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  16. idle-timeout: 30000
  17. connection-test-query: SELECT 1
  18. num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  19. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  20. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  21. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  22. # http:
  23. # multipart:
  24. # max-file-size: 5MB
  25. # location: D:/work/soft_dev/IdeaWorkSpace/wlyy2.0/svr/svr-patient/temp_file/
  26. # resolve-lazily: true
  27. redis:
  28. database: 0 # Database index used by the connection factory.
  29. password: # Login password of the redis server.
  30. timeout: 120000 # 连接超时时间(毫秒) 60秒
  31. pool:
  32. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  33. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  34. max-idle: 20 # 连接池中的最大空闲连接
  35. min-idle: 5 # 连接池中的最小空闲连接
  36. mail:
  37. default-encoding: UTF-8
  38. #端口
  39. port: 25
  40. #协议
  41. protocol: smtp
  42. properties.mail.smtp.auth: true
  43. properties.mail.smtp.starttls.enable: true
  44. properties.mail.smtp.starttls.required: true
  45. host: smtp.163.com
  46. #发送者的邮箱密码
  47. password: xmijk181016jkzl
  48. #发送者的邮箱账号
  49. username: i_jiankang@163.com
  50. es:
  51. index:
  52. servicePackLog: base_service_package_log
  53. type:
  54. servicePackLog: base_service_package_log
  55. fast-dfs:
  56. tracker-server: 172.26.0.110:22122 #服务器地址
  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. # url: jdbc:mysql://172.17.110.160/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  79. # username: ssgg
  80. # password: ssgg
  81. url: jdbc:mysql://172.26.0.114/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  82. username: root
  83. password: jkzlehr
  84. elasticsearch:
  85. cluster-name: jkzl #集群名 默认elasticsearch
  86. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  87. client-transport-sniff: false
  88. jest:
  89. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  90. connection-timeout: 60000 # Connection timeout in milliseconds.
  91. multi-threaded: true # Enable connection requests from multiple execution threads.
  92. activemq:
  93. broker-url: tcp://172.26.0.116:61616
  94. user: admin
  95. password: admin
  96. redis:
  97. host: 172.26.0.253 # Redis server host.
  98. port: 6379 # Redis server port.
  99. # password: jkzl_ehr
  100. # zipkin:
  101. # base-url: http://localhost:9411 #日志追踪的地址
  102. fastDFS:
  103. fastdfs_file_url: http://172.26.0.110:8888/
  104. # 短信发送地址
  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.118:3000/
  125. data_base_name: im_new
  126. # 上传文件临时路径配置
  127. FileTempPath:
  128. upload_temp_path : /var/local/temp
  129. image_path : /var/local/upload/images
  130. voice_path : /var/local/upload/voice
  131. chat_file_path : /var/local/upload/chat
  132. ---
  133. spring:
  134. profiles: jwtest
  135. datasource:
  136. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  137. username: ssgg
  138. password: ssgg@jkzl2019
  139. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  140. # username: root
  141. # password: 123456
  142. elasticsearch:
  143. cluster-name: jkzl #集群名 默认elasticsearch
  144. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  145. client-transport-sniff: false
  146. jest:
  147. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  148. connection-timeout: 60000 # Connection timeout in milliseconds.
  149. multi-threaded: true # Enable connection requests from multiple execution threads.
  150. activemq:
  151. broker-url: tcp://172.26.0.116:61616
  152. user: admin
  153. password: admin
  154. redis:
  155. host: 172.26.0.253 # Redis server host.
  156. port: 6379 # Redis server port.
  157. fastDFS:
  158. fastdfs_file_url: http://172.26.0.110:8888/
  159. wechat:
  160. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  161. # 短信验证码发送的客户端标识,居民端
  162. sms:
  163. clientId: EwC0iRSrcP
  164. myFamily:
  165. qrCodeFailurTime: 2
  166. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  167. demo:
  168. flag: true
  169. hospital:
  170. url: https://wx.xmzsh.com
  171. mqUser: JKZL
  172. mqPwd: 123456
  173. SourceSysCode: S60
  174. TargetSysCode: S01
  175. im:
  176. im_list_get: http://172.26.0.118:3000/
  177. data_base_name: im_new
  178. # 上传文件临时路径配置
  179. FileTempPath:
  180. upload_temp_path : /var/local/temp
  181. image_path : /var/local/upload/images
  182. voice_path : /var/local/upload/voice
  183. chat_file_path : /var/local/upload/chat
  184. ---
  185. spring:
  186. profiles: jwprod
  187. datasource:
  188. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  189. username: im
  190. password: 2oEq3Kf7
  191. elasticsearch:
  192. cluster-name: jkzl #集群名 默认elasticsearch
  193. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  194. client-transport-sniff: false
  195. jest:
  196. uris: http://192.0.33.26:9300
  197. connection-timeout: 60000 # Connection timeout in milliseconds.
  198. multi-threaded: true # Enable connection requests from multiple execution threads.
  199. activemq:
  200. broker-url: tcp://59.61.92.90:9103
  201. user: jkzl
  202. password: jkzlehr
  203. redis:
  204. host: 192.0.33.26 # Redis server host.
  205. port: 6390 # Redis server port.
  206. password: Kb6wKDQP1W4
  207. fastDFS:
  208. fastdfs_file_url: http://192.0.33.26:8888/
  209. wechat:
  210. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  211. # 短信验证码发送的客户端标识,居民端
  212. sms:
  213. clientId: EwC0iRSrcP #todo 待配置
  214. myFamily:
  215. qrCodeFailurTime: 2
  216. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  217. demo:
  218. flag: false
  219. hospital:
  220. url: https://wx.xmzsh.com
  221. mqUser: JKZL
  222. mqPwd: 123456
  223. SourceSysCode: S60
  224. TargetSysCode: S01
  225. im:
  226. im_list_get: http://172.26.0.118:3000/
  227. data_base_name: im
  228. # 上传文件临时路径配置
  229. FileTempPath:
  230. upload_temp_path : /var/local/temp
  231. image_path : /var/local/upload/images
  232. voice_path : /var/local/upload/voice
  233. chat_file_path : /var/local/upload/chat