csc-szls-message-dev.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. hostname: 172.16.0.2 #地址
  2. spring:
  3. # zip配置
  4. zipkin:
  5. #zipkin server的请求地址
  6. base-url: http://${hostname}:9611
  7. sender:
  8. # web 客户端将踪迹日志数据通过网络请求的方式传送到服务端,另外还有配置 # kafka/rabbit 客户端将踪迹日志数据传递到mq进行中转
  9. type: web
  10. sleuth:
  11. sampler:
  12. # 采样率 1 代表100%全部采集 ,默认0.1 代表10% 的请求踪迹数据会被采集
  13. probability: 1
  14. boot:
  15. admin:
  16. client:
  17. url: "http://${hostname}:9610"
  18. password: password
  19. username: user
  20. instance:
  21. prefer-ip: true
  22. redis:
  23. database: 0 #Redis数据库索引(默认为0)
  24. timeout: 5000ms # 连接超时时间(毫秒)
  25. host: ${hostname}
  26. port: 6379
  27. password: 123456 # Redis服务器连接密码(默认为空)
  28. jedis:
  29. pool:
  30. max-active: 8 # 连接池中的最大连接
  31. max-wait: -1ms # 连接池最大阻塞等待时间(使用负值表示没有限制)
  32. max-idle: 8 # 连接池中的最大空闲连接
  33. min-idle: 0 # 连接池中的最小空闲连接
  34. servlet:
  35. multipart:
  36. #单个文件上传大小
  37. max-file-size: 10MB
  38. #总数上传大小
  39. max-request-size: 100MB
  40. # mysql配置
  41. datasource:
  42. driver-class-name: com.mysql.jdbc.Driver
  43. #username: ENC(AC7MiPu2X266UaujLxVbnA==)
  44. #password: ENC(PXh/ZVSBt39v0lYWqfRTFYMKJ2trNwCP)
  45. username: root
  46. password: 1qaz@WSX
  47. url: jdbc:mysql://172.16.0.2:3306/csc-szls-test?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
  48. hikari:
  49. minimum-idle: 5 #最小空闲连接数量
  50. idle-timeout: 300000 # 空闲连接存活最大时间,默认600000(10分钟)
  51. maximum-pool-size: 50 #连接池最大连接数,默认是10
  52. auto-commit: true #此属性控制从池返回的连接的默认自动提交行为,默认值:true
  53. pool-name: MyHikariCP9609 #连接池母子
  54. max-lifetime: 1800000 #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
  55. connection-timeout: 60000 #数据库连接超时时间,默认30秒,即30000
  56. connection-test-query: SELECT 1
  57. quartz:
  58. job-store-type: jdbc #数据库方式
  59. jdbc:
  60. initialize-schema: never #不初始化表结构
  61. properties:
  62. org:
  63. quartz:
  64. scheduler:
  65. instanceId: AUTO #默认主机名和时间戳生成实例ID,可以是任何字符串,但对于所有调度程序来说,必须是唯一的 对应qrtz_scheduler_state INSTANCE_NAME字段
  66. #instanceName: clusteredScheduler #quartzScheduler
  67. jobStore:
  68. class: org.quartz.impl.jdbcjobstore.JobStoreTX #持久化配置
  69. driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate #我们仅为数据库制作了特定于数据库的代理
  70. useProperties: false #以指示JDBCJobStore将JobDataMaps中的所有值都作为字符串,因此可以作为名称 - 值对存储而不是在BLOB列中以其序列化形式存储更多复杂的对象。从长远来看,这是更安全的,因为您避免了将非String类序列化为BLOB的类版本问题。
  71. tablePrefix: qrtz_ #数据库表前缀
  72. misfireThreshold: 60000 #在被认为“失火”之前,调度程序将“容忍”一个Triggers将其下一个启动时间通过的毫秒数。默认值(如果您在配置中未输入此属性)为60000(60秒)。
  73. clusterCheckinInterval: 5000 #设置此实例“检入”*与群集的其他实例的频率(以毫秒为单位)。影响检测失败实例的速度。
  74. isClustered: true #打开群集功能
  75. threadPool: #连接池
  76. class: org.quartz.simpl.SimpleThreadPool
  77. threadCount: 10
  78. threadPriority: 5
  79. threadsInheritContextClassLoaderOfInitializingThread: true
  80. # 配置rabbitmq的地址以及用户密码
  81. rabbitmq:
  82. host: ${hostname}
  83. port: 5672
  84. username: admin
  85. password: admin
  86. mybatis:
  87. mapper-locations: classpath:/mapper/*Mapper.xml
  88. # 配置mybatis-plus
  89. mybatis-plus:
  90. # 配置扫描xml
  91. mapper-locations: classpath:/mapper/*Mapper.xml
  92. # 实体扫描,多个package用逗号或者分号分隔
  93. type-aliases-package: com.unissoft.model
  94. ribbon:
  95. ReadTimeout: 10000
  96. ConnectTimeout: 10000
  97. MaxAutoRetries: 1
  98. MaxAutoRetriesNextServer: 2
  99. #熔断器开启
  100. feign:
  101. client:
  102. config:
  103. default:
  104. connect-timeout: 9000
  105. read-timeout: 9000
  106. hystrix:
  107. enabled: true
  108. hystrix:
  109. command:
  110. default:
  111. execution:
  112. isolation:
  113. thread:
  114. timeoutInMilliseconds: 9000
  115. # 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
  116. management:
  117. endpoints:
  118. web:
  119. exposure:
  120. include: '*'
  121. # 2.0开始,actuator默认不开放,所以要设置为开发
  122. endpoint:
  123. health:
  124. show-details: ALWAYS
  125. my-config:
  126. isUseSecurity: true #是否使用security权限
  127. projectCode: csc-szls-message #项目编码
  128. clientId: client_csc-szls-message #客户端id
  129. logging:
  130. level:
  131. com.unissoft.mapper: DEBUG #包路径为mapper文件包路径
  132. minio:
  133. endpoint: http://172.16.0.6:9000
  134. accesskey: minioAdmin #账号
  135. secretkey: minioAdmin #密码