Created
May 26, 2022 12:31
-
-
Save FrancescoJo/c36b67c3c2b310ed58e2f28b2187e22e to your computer and use it in GitHub Desktop.
Spring Framework Custom annotation as Bean loader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory | |
import org.springframework.beans.factory.support.BeanDefinitionRegistry | |
import org.springframework.beans.factory.support.BeanDefinitionRegistryPostProcessor | |
import org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider | |
import org.springframework.context.annotation.Configuration | |
import org.springframework.core.type.filter.AnnotationTypeFilter | |
@Configuration | |
class AnnotationConfig : BeanDefinitionRegistryPostProcessor { | |
override fun postProcessBeanFactory(beanFactory: ConfigurableListableBeanFactory) { | |
} | |
override fun postProcessBeanDefinitionRegistry(registry: BeanDefinitionRegistry) { | |
val scanner = ClassPathScanningCandidateComponentProvider(false) | |
scanner.addIncludeFilter(AnnotationTypeFilter(MyAnnotation::class.java)) | |
// Speedup for specific package names | |
scanner.findCandidateComponents("PACKAGE_NAME") | |
.forEach { | |
// According to the documentation using this as bean name here could be dangerous, | |
// but using this value is safe unless annotated class is a simple(a final type) object. | |
val name = it.beanClassName!! | |
registry.registerBeanDefinition(name, it) | |
} | |
} | |
} | |
@Target(AnnotationTarget.CLASS) | |
@Retention(AnnotationRetention.RUNTIME) | |
@MustBeDocumented | |
annotation class MyAnnotation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment