首頁> Java> java教程> 主體

SpringBoot設定介面逾時時間

(*-*)浩
發布: 2019-08-07 16:53:28
轉載
8132 人瀏覽過

SpringBoot設定介面存取逾時時間有兩種方式

SpringBoot設定介面逾時時間

#一、在設定檔application.properties中加了spring.mvc.async.request-timeout=20000,意思是設定超時時間為20000ms即20s,

二、還有一種就是在config組態類別中加入:

public class WebMvcConfig extends WebMvcConfigurerAdapter { @Override public void configureAsyncSupport(final AsyncSupportConfigurer configurer) { configurer.setDefaultTimeout(20000); configurer.registerCallableInterceptors(timeoutInterceptor()); } @Bean public TimeoutCallableProcessingInterceptor timeoutInterceptor() { return new TimeoutCallableProcessingInterceptor(); } }
登入後複製

以上是SpringBoot設定介面逾時時間的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!