3 回答
TA贡献1829条经验 获得超9个赞
您正在与邮递员或任何其他http测试人员一起在H2控制台测试中超时,因为:使用Zuul...歇斯底里...您正在尝试将完全相同的对象发送到 H2 数据库。这可能是因为您的模型上也有验证器。要解决:通过重新编辑,确保json,xml或任何对象相对唯一,然后尝试再次发送请求。
TA贡献1155条经验 获得超0个赞
上述问题是由滞后超时引起的。上述问题可以通过禁用休眠超时或增加滞后超时来解决,如下所示:
# Disable Hystrix timeout globally (for all services)
hystrix.command.default.execution.timeout.enabled: false
#To disable timeout foror particular service,
hystrix.command.<serviceName>.execution.timeout.enabled: false
# Increase the Hystrix timeout to 60s (globally)
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 60000
# Increase the Hystrix timeout to 60s (per service)
hystrix.command.<serviceName>.execution.isolation.thread.timeoutInMilliseconds: 60000
如果使用发现服务进行服务查找和路由,则上述解决方案将起作用。
添加回答
举报