当前位置: 首页 > 文档资料 > SOP 中文文档 >

超时设置

优质
小牛编辑
151浏览
2023-12-01

当微服务处理业务逻辑时间过长,网关会报超时错误,默认等待时间是5秒。

可在网关指定spring.cloud.gateway.httpclient.response-timeout参数设置超时时间,单位毫秒

# 设置响应超时10秒
spring.cloud.gateway.httpclient.response-timeout=10000

更多配置参见:org.springframework.cloud.gateway.config.HttpClientProperties

测试用例参见:com.gitee.sop.test.TimeoutTest