Auto-configure a bootstrapExecutor bean to be used by Framework's background bean initialization #32551
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
This pull request introduces the ability to auto-configure a
bootstrapExecutor
bean for background bean initialization in the Spring Framework. It provides an@BootstrapExecutor
annotation to configure the properties of theThreadPoolTaskExecutor
used for background initialization.Related Issues:
spring-projects/spring-boot#39791
#13410 (comment)
Changes:
@BootstrapExecutor
annotation inorg.springframework.context.annotation
package to configure the bootstrap executor.ConfigurationClassPostProcessor
to detect the presence of@BootstrapExecutor
annotation on configuration classes and register aThreadPoolTaskExecutor
bean with the configured properties.BootstrapExecutorBeanDefinitionParser
to parse the<context:bootstrap-executor>
XML element and register theThreadPoolTaskExecutor
bean. (Note: This is currently not functional and the logic is temporarily handled inConfigurationClassPostProcessor
.)ContextNamespaceHandler
to register theBootstrapExecutorBeanDefinitionParser
.ConfigurationClassPostProcessorTests
to verify the parallel bean initialization using the@BootstrapExecutor
annotation.Usage:
To use the
bootstrapExecutor
for background bean initialization:@BootstrapExecutor
annotation to one of your@Configuration
classes.ThreadPoolTaskExecutor
using the annotation attributes.@Bean(bootstrap = BACKGROUND)
on the beans that should be initialized in the background.Example:
Known Issues:
BootstrapExecutorBeanDefinitionParser
is currently not functional due to a parsing issue. The logic is temporarily handled in theprocessConfigBeanDefinitions
method ofConfigurationClassPostProcessor
.Next Steps:
BootstrapExecutorBeanDefinitionParser
to properly parse the<context:bootstrap-executor>
XML element.bootstrapExecutor
based on the number of@Bean(bootstrap=BACKGROUND)
annotations if@BootstrapExecutor
is not found.