mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-20 22:59:01 +00:00
Previously, any user that defines an AsyncConfigurer should provide the async executor as well, given that our auto-configuration no longer defines a "taskExecutor" bean. This commit extends our auto-configuration of async processing to use the "applicationTaskExecutor" bean name transparently if a user has configured an AsyncConfigurer, but did not override the getAsyncExecutor method. Closes gh-47897