| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- hostname: 172.16.0.2 #地址
- spring:
- boot:
- admin:
- client:
- url: "http://${hostname}:9610"
- password: password
- username: user
- instance:
- prefer-ip: true
- redis:
- database: 0 #Redis数据库索引(默认为0)
- timeout: 5000ms # 连接超时时间(毫秒)
- host: ${hostname}
- port: 6679
- password: 123456 # Redis服务器连接密码(默认为空)
- jedis:
- pool:
- max-active: 8 # 连接池中的最大连接
- max-wait: -1ms # 连接池最大阻塞等待时间(使用负值表示没有限制)
- max-idle: 8 # 连接池中的最大空闲连接
- min-idle: 0 # 连接池中的最小空闲连接
- servlet:
- multipart:
- #单个文件上传大小
- max-file-size: 10MB
- #总数上传大小
- max-request-size: 100MB
- # mysql配置
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- username: root
- password: 123456
- url: jdbc:mysql://101.36.160.140:10311/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
- # 配置rabbitmq的地址以及用户密码
- rabbitmq:
- host: ${hostname}
- port: 5672
- username: admin
- password: admin
- mybatis:
- mapper-locations: classpath:/mapper/*Mapper.xml
- # 配置mybatis-plus
- mybatis-plus:
- # 配置扫描xml
- mapper-locations: classpath:/mapper/*Mapper.xml
- # 实体扫描,多个package用逗号或者分号分隔
- type-aliases-package: com.unissoft.model
- ribbon:
- ReadTimeout: 10000
- ConnectTimeout: 10000
- MaxAutoRetries: 1
- MaxAutoRetriesNextServer: 2
- #熔断器开启
- feign:
- hystrix:
- enabled: true
- # 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- # 2.0开始,actuator默认不开放,所以要设置为开发
- endpoint:
- health:
- show-details: ALWAYS
- my-config:
- isUseSecurity: true #是否使用security权限
- projectCode: csc-szls-system-manage #项目编码
- clientId: client_csc_szls_system_manage #客户端id
- minio:
- endpoint: http://${hostname}:9998 #图片服务器访问地址
- accesskey: minioAdmin #账号
- secretkey: minioAdmin1 #密码
- server-config:
- # serverHttp: http://localhost:9601/
- serverHttp: http://172.16.0.2:9601/
- serverNames: csc-szls-business,csc-szls-message
- serverUrl: /public/loadResourceDefine
- oauthUrl: http://172.16.0.2:9601/csc-szls-oauth/oauth/token
- testdemo: to6666666666666999999999
|