Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每隔 5 分钟,客户端/浏览器会再次从客户端/浏览器提交对我们的 Java REST 服务之一的 Web 服务请求,以防服务执行时间更长。我们可以限制它在花费足够长的时间后重新提交吗?
问候,
瓦布哈夫
恰好发生在我身上,唯一的区别是我的是简单的 HTTP Post 请求而不是 Web 服务请求。
您正在使用哪个应用程序服务器?在请求超时的情况下,由应用服务器重新提交请求。
你没看错,双触发的时间间隔正好是 5 分钟,这意味着你的 HTTP 服务器配置为 5 分钟后超时,你需要将超时设置为 -1(无限)或一些合理的更长的值,以便请求获胜不要超时并重新提交。