svr-internet-hospital.yml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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: 30MB
  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. connect-timeout: 2 #链接超时时间
  57. network-timeout: 30
  58. charset: ISO8859-1 #编码
  59. http:
  60. tracker-http-port: 80
  61. anti-steal-token: no
  62. secret-key: FastDFS1234567890
  63. pool: #连接池大小
  64. init-size: 5
  65. max-size: 20
  66. wait-time: 500
  67. configDefault: # 默认配置
  68. saasId: xmjkzl_saasId
  69. express:
  70. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  71. sf_code: JKZL
  72. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  73. ---
  74. spring:
  75. profiles: jwdev
  76. datasource:
  77. # url: jdbc:mysql://172.17.110.160/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  78. # username: ssgg
  79. # password: ssgg
  80. url: jdbc:mysql://172.26.0.114/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  81. username: root
  82. password: jkzlehr
  83. elasticsearch:
  84. cluster-name: jkzl #集群名 默认elasticsearch
  85. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  86. client-transport-sniff: false
  87. jest:
  88. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  89. connection-timeout: 60000 # Connection timeout in milliseconds.
  90. multi-threaded: true # Enable connection requests from multiple execution threads.
  91. activemq:
  92. broker-url: tcp://172.26.0.116:61616
  93. user: admin
  94. password: admin
  95. redis:
  96. host: 172.26.0.253 # Redis server host.
  97. port: 6379 # Redis server port.
  98. # password: jkzl_ehr
  99. # zipkin:
  100. # base-url: http://localhost:9411 #日志追踪的地址
  101. fastDFS:
  102. fastdfs_file_url: http://172.26.0.110:8888/
  103. fast-dfs:
  104. tracker-server: 172.26.0.110:22122 #服务器地址
  105. # 短信发送地址
  106. jw:
  107. smsUrl: http://svr-base:10020/sms_gateway/send
  108. myFamily:
  109. qrCodeFailurTime: 2
  110. wechat:
  111. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  112. # 短信验证码发送的客户端标识,居民端
  113. sms:
  114. clientId: EwC0iRSrcP
  115. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  116. demo:
  117. flag: true
  118. hospital:
  119. url: https://wx.xmzsh.com
  120. mqUser: JKZL
  121. mqPwd: 123456
  122. SourceSysCode: S60
  123. TargetSysCode: S01
  124. im:
  125. im_list_get: http://172.26.0.105:3000/
  126. data_base_name: im_internet_hospital
  127. # 上传文件临时路径配置
  128. FileTempPath:
  129. upload_temp_path : /var/local/temp
  130. image_path : /var/local/upload/images
  131. voice_path : /var/local/upload/voice
  132. chat_file_path : /var/local/upload/chat
  133. ---
  134. spring:
  135. profiles: jwtest
  136. datasource:
  137. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  138. username: ssgg
  139. password: ssgg@jkzl2019
  140. # url: jdbc:mysql://172.19.103.77/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  141. # username: root
  142. # password: 123456
  143. elasticsearch:
  144. cluster-name: jkzl #集群名 默认elasticsearch
  145. cluster-nodes: 172.26.0.115:9300,172.26.0.115:9300 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  146. client-transport-sniff: false
  147. jest:
  148. uris: http://172.26.0.112:9200,http://172.26.0.112:9200
  149. connection-timeout: 60000 # Connection timeout in milliseconds.
  150. multi-threaded: true # Enable connection requests from multiple execution threads.
  151. activemq:
  152. broker-url: tcp://172.26.0.116:61616
  153. user: admin
  154. password: admin
  155. redis:
  156. host: 172.26.0.253 # Redis server host.
  157. port: 6379 # Redis server port.
  158. fastDFS:
  159. fastdfs_file_url: http://172.26.0.110:8888/
  160. fast-dfs:
  161. tracker-server: 172.26.0.110:22122 #服务器地址
  162. wechat:
  163. id: 97ed8a0a-4f07-4b85-ab02-b716c611a464 # base库中,wx_wechat 的id字段
  164. # 短信验证码发送的客户端标识,居民端
  165. sms:
  166. clientId: EwC0iRSrcP
  167. myFamily:
  168. qrCodeFailurTime: 2
  169. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  170. demo:
  171. flag: true
  172. hospital:
  173. url: https://wx.xmzsh.com
  174. mqUser: JKZL
  175. mqPwd: 123456
  176. SourceSysCode: S60
  177. TargetSysCode: S01
  178. im:
  179. im_list_get: http://172.26.0.105:3000/
  180. data_base_name: im_internet_hospital
  181. # 上传文件临时路径配置
  182. FileTempPath:
  183. upload_temp_path : /var/local/temp
  184. image_path : /var/local/upload/images
  185. voice_path : /var/local/upload/voice
  186. chat_file_path : /var/local/upload/chat
  187. ---
  188. spring:
  189. profiles: jwprod
  190. datasource:
  191. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  192. username: im
  193. password: 2oEq3Kf7
  194. elasticsearch:
  195. cluster-name: jkzl #集群名 默认elasticsearch
  196. cluster-nodes: 192.0.33.26:9200 #配置es节点信息,逗号分隔,如果没有指定,则启动ClientNode
  197. client-transport-sniff: false
  198. jest:
  199. uris: http://192.0.33.26:9300
  200. connection-timeout: 60000 # Connection timeout in milliseconds.
  201. multi-threaded: true # Enable connection requests from multiple execution threads.
  202. activemq:
  203. broker-url: tcp://59.61.92.90:9103
  204. user: jkzl
  205. password: jkzlehr
  206. redis:
  207. host: 192.0.33.26 # Redis server host.
  208. port: 6390 # Redis server port.
  209. password: Kb6wKDQP1W4
  210. fastDFS:
  211. fastdfs_file_url: http://192.0.33.26:8888/
  212. fast-dfs:
  213. tracker-server: 192.0.33.26:22122 #服务器地址
  214. wechat:
  215. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段 # todo 待配置
  216. # 短信验证码发送的客户端标识,居民端
  217. sms:
  218. clientId: EwC0iRSrcP #todo 待配置
  219. myFamily:
  220. qrCodeFailurTime: 2
  221. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  222. demo:
  223. flag: false
  224. hospital:
  225. url: https://wx.xmzsh.com
  226. mqUser: JKZL
  227. mqPwd: 123456
  228. SourceSysCode: S60
  229. TargetSysCode: S01
  230. im:
  231. im_list_get: http://172.16.1.42:3000/
  232. data_base_name: im
  233. # 上传文件临时路径配置
  234. FileTempPath:
  235. upload_temp_path : /var/local/temp
  236. image_path : /var/local/upload/images
  237. voice_path : /var/local/upload/voice
  238. chat_file_path : /var/local/upload/chat