svr-authentication.yml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. server:
  2. port: 10260
  3. spring:
  4. datasource:
  5. driver-class-name: com.mysql.jdbc.Driver
  6. max-active: 100
  7. max-idle: 100 #最大空闲连接
  8. min-idle: 10 #最小空闲连接
  9. validation-query-timeout: 20
  10. log-validation-errors: true
  11. validation-interval: 60000 #避免过度验证,保证验证不超过这个频率——以毫秒为单位。如果一个连接应该被验证,但上次验证未达到指定间隔,将不再次验证。
  12. validation-query: SELECT 1 #SQL 查询, 用来验证从连接池取出的连接, 在将连接返回给调用者之前。 如果指定, 则查询必须是一个SQL SELECT 并且必须返回至少一行记录
  13. test-on-borrow: true #指明是否在从池中取出连接前进行检验, 如果检验失败, 则从池中去除连接并尝试取出另一个。注意: 设置为true 后如果要生效,validationQuery 参数必须设置为非空字符串
  14. test-on-return: true #指明是否在归还到池中前进行检验 注意: 设置为true 后如果要生效validationQuery 参数必须设置为非空字符串
  15. idle-timeout: 20000
  16. connection-test-query: SELECT 1
  17. num-tests-per-eviction-run: 100 #在每次空闲连接回收器线程(如果有)运行时检查的连接数量,最好和maxActive
  18. test-while-idle: true #指明连接是否被空闲连接回收器(如果有)进行检验,如果检测失败,则连接将被从池中去除
  19. min-evictable-idle-time-millis: 3600000 #连接池中连接,在时间段内一直空闲,被逐出连接池的时间(1000*60*60),以毫秒为单位
  20. time-between-eviction-runs-millis: 300000 #在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位,一般比minEvictableIdleTimeMillis小
  21. redis:
  22. database: 0 # Database index used by the connection factory.
  23. timeout: 0 # Connection timeout in milliseconds.
  24. pool:
  25. 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.
  26. max-idle: 8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.
  27. 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.
  28. 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.
  29. user:
  30. autoUnlockTime: 5 #账户锁定后,自动解锁时间 以分钟计算
  31. reflashFailedCountTime: 5 #将失败次数重置为0
  32. tryLoginTimes: 5 #失败重试次数
  33. fast-dfs:
  34. tracker-server: 192.0.33.26:22122 #服务器地址
  35. connect-timeout: 2 #链接超时时间
  36. network-timeout: 30
  37. charset: ISO8859-1 #编码
  38. http:
  39. tracker-http-port: 80
  40. anti-steal-token: no
  41. secret-key: FastDFS1234567890
  42. pool: #连接池大小
  43. init-size: 5
  44. max-size: 20
  45. wait-time: 500
  46. ---
  47. spring:
  48. profiles: jwdev
  49. ##发现服务
  50. datasource:
  51. url: jdbc:mysql://172.26.0.114/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  52. username: ssgg
  53. password: ssgg@jkzl2019
  54. redis:
  55. host: 172.26.0.253 # Redis server host.
  56. port: 6379 # Redis server port.
  57. # i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  58. iHealth:
  59. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  60. zhongshanHospital:
  61. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  62. fastDFS:
  63. fastdfs_file_url: http://172.26.0.110:8888/
  64. ---
  65. spring:
  66. profiles: jwtest
  67. datasource:
  68. url: jdbc:mysql://172.26.0.104/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  69. username: root
  70. password: jkzlehr
  71. redis:
  72. host: 172.26.0.253 # Redis server host.
  73. port: 6379 # Redis server port.
  74. ##发现服务
  75. ## i健康用户信息接口,开放出来给互联网医院登录同步用户信息用
  76. iHealth:
  77. user-info-uri: http://ehr.yihu.com/wlyy/iHealth/userInfo
  78. zhongshanHospital:
  79. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  80. fastDFS:
  81. fastdfs_file_url: http://172.26.0.110:8888/
  82. ---
  83. spring:
  84. profiles: jwprod
  85. datasource:
  86. url: jdbc:mysql://172.16.1.42/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  87. username: im
  88. password: 2oEq3Kf7
  89. redis:
  90. host: 192.0.33.26 # Redis server host.
  91. port: 6390 # Redis server port.
  92. password: Kb6wKDQP1W4
  93. ##发现服务
  94. iHealth:
  95. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  96. zhongshanHospital:
  97. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  98. fastDFS:
  99. fastdfs_file_url: http://192.0.33.26:22122
  100. ##眼科医院
  101. ---
  102. spring:
  103. profiles: jwOracleProd
  104. datasource:
  105. driver-class-name: oracle.jdbc.driver.OracleDriver
  106. url: jdbc:oracle:thin:@192.168.20.55:1521:orcl
  107. username: system
  108. password: hxyk9573
  109. jpa:
  110. properties:
  111. hibernate:
  112. dialect: org.hibernate.dialect.Oracle10gDialect
  113. show_sql: true
  114. database: oracle
  115. redis:
  116. host: 192.168.33.198 # Redis server host.
  117. port: 6380 # Redis server port.
  118. password: Kb6wKDQP1W4
  119. ##发现服务
  120. iHealth:
  121. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  122. zhongshanHospital:
  123. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  124. fastDFS:
  125. fastdfs_file_url: http://192.0.33.26:22122
  126. ---
  127. ## 心脏中心
  128. spring:
  129. profiles: xzprod
  130. datasource:
  131. url: jdbc:mysql://192.168.103.155/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  132. username: jzkl
  133. password: jzkl@2020
  134. redis:
  135. host: 192.168.103.158 # Redis server host.
  136. port: 6380 # Redis server port.
  137. password: q4YaQemf
  138. ##发现服务
  139. iHealth:
  140. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  141. zhongshanHospital:
  142. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  143. fastDFS:
  144. fastdfs_file_url: http://192.168.103.159:22122
  145. ---
  146. ## 卫计委
  147. spring:
  148. profiles: xmjwprod
  149. datasource:
  150. url: jdbc:mysql://59.61.92.90:9409/base?useUnicode:true&characterEncoding=utf-8&autoReconnect=true&useSSL=false
  151. username: wlyy
  152. password: qY#j2n5O
  153. redis:
  154. host: 59.61.92.90 # Redis server host.
  155. port: 9206 # Redis server port.
  156. password: jkzlehr
  157. ##发现服务
  158. iHealth:
  159. user-info-uri: http://www.xmtyw.cn/wlyy/iHealth/userInfo
  160. zhongshanHospital:
  161. user-info-uri: http://laptop-u738dn2p:10023/mqsdk/getUserInfoByOpenid
  162. fastDFS:
  163. fastdfs_file_url: http://192.168.103.159:22122