我是靠谱客的博主 哭泣树叶,最近开发中收集的这篇文章主要介绍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设置接口超时时间的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是哭泣树叶为你收集整理的SpringBoot设置接口超时时间的全部内容,希望文章能够帮你解决SpringBoot设置接口超时时间所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(71)

评论列表共有 0 条评论

立即
投稿
返回
顶部