标签: java spring spring-boot
我试图覆盖SpringBoot / SpringMVC应用程序中RequestMappingHandlerAdapter bean使用的默认任务执行程序。
javadocs建议更换默认值,但不要说明如何执行此操作,也不能在SpringBoot文档中找到任何内容。
答案 0 :(得分:4)
WebMvcConfigurer有一个用于配置异步支持(https://github.com/spring-projects/spring-framework/blob/master/spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurer.java#L92)的回调。
WebMvcConfigurer