1 Star 1 Fork 1

jww-cloud/jww-cloud-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jww-cloud-gateway-dev.yml 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
wanyong 提交于 2019-01-22 11:05 . 配置更新
# 路由配置
spring:
cloud:
gateway:
routes:
- id: member
uri: lb://JWW-CLOUD-SERVICE-MEMBER
predicates:
- Path=/member/**
filters:
- StripPrefix=1
- id: member1
uri: lb://JWW-CLOUD-SERVICE-MEMBER
predicates:
- Path=/member1/**
filters:
- StripPrefix=1
# feign配置
feign:
compression:
# 配置请求GZIP压缩
request:
enabled: true
# 配置压缩支持的类型
mime-types: application/json
# 配置压缩数据大小的下限
min-request-size: 2048
# 配置响应GZIP压缩
response:
enabled: true
# 开启熔断
hystrix:
enabled: true
httpclient:
# 是否用httpclient替换默认的client
enabled: false
okhttp:
# 是否用okhttp替换默认的client
enabled: true
client:
config:
# 针对服务进行超时时间设置,优先级高于外层ribbon超时配置
jww-cloud-service-member:
connectTimeout: 2000
readTimeout: 30000
# ribbon配置
ribbon:
# 请求连接的超时时间
ConnectTimeout: 2000
# 请求处理的超时时间
ReadTimeout: 5000
# 饥饿加载
eager-load:
enabled: true
# 需加载的服务名称,多个服务使用[,]分隔
clients: jww-cloud-service-member
# hystrix配置
hystrix:
threadpool:
default:
# 并发执行的最大线程数,默认10
coreSize: 20
maximumSize: 50
allowMaximumSizeToDivergeFromCoreSize: true
command:
default:
execution:
isolation:
thread:
# 命令执行超时时间,默认1000ms
timeoutInMilliseconds: 30000
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jww-cloud/jww-cloud-config.git
git@gitee.com:jww-cloud/jww-cloud-config.git
jww-cloud
jww-cloud-config
jww-cloud-config
dev

搜索帮助