当前位置:  开发笔记 > 后端 > 正文

在Spring中指定控制器异步方法的超时

如何解决《在Spring中指定控制器异步方法的超时》经验,为你挑选了1个好方法。

我有一个由Java配置支持的Spring MVC应用程序,我想为所有涉及Callable <>接口的异步调用设置默认超时.例如,考虑这样的控制器方法:

@RequestMapping
public Callable doSmth() {
    return () -> {
        return "myview";
    }
}

我希望有一个控制器(每个应用程序)控制器有多少时间在请求超时之前完成它的工作.

我想有一个Java配置的例子,而不是xml



1> jny..:

您可以通过扩展WebMvcConfigurerAdapter和覆盖来实现configureAsyncSupport:

 @Configuration
//other annotations if needed
public class WebConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configureAsyncSupport(AsyncSupportConfigurer configurer) {
        configurer.setDefaultTimeout(100000); //in milliseconds
        super.configureAsyncSupport(configurer);
    }

或直接在RequestMappingHandlerAdapter.

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有