application.yml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. #通用的配置不用区分环境变量
  2. server:
  3. # port: ${server.svr-internet-hospital-entrance-port}
  4. port: 10023
  5. spring:
  6. datasource:
  7. driver-class-name: com.mysql.jdbc.Driver
  8. max-active: 50
  9. max-idle: 50 #最大空闲连接
  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: 30000
  18. connection-test-query: SELECT 1
  19. num-tests-per-eviction-run: 50 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和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. redis:
  24. database: 0 # Database index used by the connection factory.
  25. password: # Login password of the redis server.
  26. timeout: 120000 # 连接超时时间(毫秒) 60秒
  27. pool:
  28. max-active: 20 # 连接池最大连接数(使用负值表示没有限制)
  29. max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制)
  30. max-idle: 20 # 连接池中的最大空闲连接
  31. min-idle: 5 # 连接池中的最小空闲连接
  32. fast-dfs:
  33. tracker-server: 172.26.0.110:22122 #服务器地址
  34. connect-timeout: 2 #链接超时时间
  35. network-timeout: 30
  36. charset: ISO8859-1 #编码
  37. http:
  38. tracker-http-port: 80
  39. anti-steal-token: no
  40. secret-key: FastDFS1234567890
  41. pool: #连接池大小
  42. init-size: 5
  43. max-size: 20
  44. wait-time: 500
  45. configDefault: # 默认配置
  46. saasId: xmjkzl_saasId
  47. express:
  48. sf_url: http://bsp-oisp.sf-express.com/bsp-oisp/sfexpressService
  49. sf_code: JKZL
  50. sf_check_word: QkeIfIvQdheqIv2cVSgAUnBU29lfNbVk
  51. # 上传文件临时路径配置
  52. FileTempPath:
  53. upload_temp_path : /var/local/temp
  54. image_path : /var/local/upload/images
  55. voice_path : /var/local/upload/voice
  56. chat_file_path : /var/local/upload/chat
  57. ---
  58. spring:
  59. profiles: jwdev
  60. datasource:
  61. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  62. username: ssgg
  63. password: ssgg@jkzl2019
  64. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  65. demo:
  66. flag: true
  67. hospital:
  68. url: https://wx.xmzsh.com
  69. mqUser: JKZL
  70. mqPwd: 123456
  71. SourceSysCode: S60
  72. TargetSysCode: S01
  73. im:
  74. im_list_get: http://172.26.0.105:3000/
  75. data_base_name: im_internet_hospital
  76. fastDFS:
  77. fastdfs_file_url: http://172.26.0.110:8888/
  78. ---
  79. spring:
  80. profiles: jwtest
  81. datasource:
  82. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  83. username: ssgg
  84. password: ssgg@jkzl2019
  85. redis:
  86. host: 172.26.0.253 # Redis server host.
  87. port: 6379 # Redis server port.
  88. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  89. demo:
  90. flag: true
  91. hospital:
  92. url: https://wx.xmzsh.com
  93. mqUser: JKZL
  94. mqPwd: 123456
  95. SourceSysCode: S60
  96. TargetSysCode: S01
  97. im:
  98. im_list_get: http://172.26.0.105:3000/
  99. data_base_name: im_internet_hospital
  100. fastDFS:
  101. fastdfs_file_url: http://172.26.0.110:8888/
  102. ---
  103. spring:
  104. profiles: jwprod
  105. datasource:
  106. url: jdbc:mysql://192.0.33.27:3306/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true
  107. username: im
  108. password: 2oEq3Kf7
  109. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  110. demo:
  111. flag: false
  112. hospital:
  113. url: https://172.16.1.34
  114. mqUser: JKZL
  115. mqPwd: 123456
  116. SourceSysCode: S60
  117. TargetSysCode: S01
  118. im:
  119. im_list_get: http://172.16.1.42:3000/
  120. data_base_name: im
  121. fastDFS:
  122. fastdfs_file_url: http://192.0.33.26:8888/
  123. ---
  124. # 眼科医院前置机
  125. spring:
  126. profiles: ykjzOracleProd
  127. datasource:
  128. driver-class-name: oracle.jdbc.driver.OracleDriver
  129. url: jdbc:oracle:thin:@192.168.20.55:1521:orcl
  130. username: system
  131. password: hxyk9573
  132. jpa:
  133. properties:
  134. hibernate:
  135. dialect: org.hibernate.dialect.Oracle10gDialect
  136. show_sql: true
  137. database: oracle
  138. # mq 是否获取his数据,flag代表获取演示数据,false代表获取his真实数据
  139. demo:
  140. flag: false
  141. hospital:
  142. url: https://wx.xmzsh.com
  143. mqUser: JKZL
  144. mqPwd: 123456
  145. SourceSysCode: S60
  146. TargetSysCode: S01
  147. im:
  148. im_list_get: http://172.16.1.42:3000/
  149. data_base_name: im
  150. fastDFS:
  151. fastdfs_file_url: http://192.0.33.26:8888/