application.yml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #通用的配置不用区分环境变量
  2. server:
  3. port: 10031
  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. fast-dfs:
  23. tracker-server: 172.26.0.110:22122 #服务器地址
  24. connect-timeout: 2 #链接超时时间
  25. network-timeout: 30
  26. charset: ISO8859-1 #编码
  27. http:
  28. tracker-http-port: 80
  29. anti-steal-token: no
  30. secret-key: FastDFS1234567890
  31. pool: #连接池大小
  32. init-size: 5
  33. max-size: 20
  34. wait-time: 500
  35. configDefault: # 默认配置
  36. saasId: xmjkzl_saasId
  37. express:
  38. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  39. sf_code: JKZL
  40. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  41. quartz:
  42. name: schedulerFactoryBean
  43. # 上传文件临时路径配置
  44. FileTempPath:
  45. upload_temp_path : /var/local/temp
  46. image_path : /var/local/upload/images
  47. voice_path : /var/local/upload/voice
  48. chat_file_path : /var/local/upload/chat
  49. #发现服务
  50. #eureka:
  51. # client:
  52. # healthcheck:
  53. # enabled: true #监控检查
  54. # serviceUrl:
  55. # defaultZone: http://172.16.100.63:8761/eureka/
  56. # instance:
  57. # prefer-ip-address: false
  58. # instance-id: ${spring.cloud.client.ipAddress}:${server.port}
  59. ---
  60. spring:
  61. profiles: jwdev
  62. datasource:
  63. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  64. username: ssgg
  65. password: ssgg@jkzl2019
  66. hlwyyEntrance:
  67. url: http://localhost:10023
  68. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  69. demo:
  70. flag: true
  71. hospital:
  72. url: https://wx.xmzsh.com
  73. mqUser: JKZL
  74. mqPwd: 123456
  75. SourceSysCode: S60
  76. TargetSysCode: S01
  77. im:
  78. im_list_get: http://172.26.0.105:3000/
  79. data_base_name: im_internet_hospital
  80. fastDFS:
  81. fastdfs_file_url: http://172.26.0.110:8888/
  82. wechat:
  83. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  84. ---
  85. spring:
  86. profiles: iottest
  87. datasource:
  88. url: jdbc:mysql://172.26.0.104/xmiot?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  89. username: ssgg
  90. password: ssgg@jkzl2019
  91. hlwyyEntrance:
  92. url: http://localhost:10023
  93. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  94. demo:
  95. flag: true
  96. hospital:
  97. url: https://wx.xmzsh.com
  98. mqUser: JKZL
  99. mqPwd: 123456
  100. SourceSysCode: S60
  101. TargetSysCode: S01
  102. im:
  103. im_list_get: http://172.26.0.105:3000/
  104. data_base_name: im_internet_hospital
  105. fastDFS:
  106. fastdfs_file_url: http://172.26.0.110:8888/
  107. wlyy:
  108. url: http://www.xmtyw.cn/wlyytest/
  109. wechat:
  110. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  111. ---
  112. spring:
  113. profiles: jwprod
  114. datasource:
  115. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  116. username: im
  117. password: 2oEq3Kf7
  118. hlwyyEntrance:
  119. url: http://172.16.1.42:10023
  120. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  121. demo:
  122. flag: false
  123. hospital:
  124. url: https://172.16.1.34
  125. mqUser: JKZL
  126. mqPwd: 123456
  127. SourceSysCode: S60
  128. TargetSysCode: S01
  129. im:
  130. im_list_get: http://172.16.1.42:3000/
  131. data_base_name: im
  132. fastDFS:
  133. fastdfs_file_url: http://192.0.33.26:8888/
  134. wlyy:
  135. url: http://www.xmtyw.cn/wlyytest/
  136. wechat:
  137. id: d24d1367-7f4f-43af-910e-a0a43799e040 # base库中,wx_wechat 的id字段
  138. ---
  139. spring:
  140. profiles: iotprod
  141. datasource:
  142. url: jdbc:mysql://10.90.32.2:20002/xmiot?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  143. username: wlyy
  144. password: jkzlehr@123
  145. wlyy:
  146. url: http://www.xmtyw.cn/wlyy/