Package org.springframework.beans.factory
Functions
findAnnotationOnBean
Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.findAnnotationOnBean(beanName: String): Annotation?
Content copied to clipboard
Extension for ListableBeanFactory.findAnnotationOnBean providing a
findAnnotationOnBean<Foo>("foo")
variant.getBean
Link copied to clipboard
getBeanNamesForAnnotation
Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.getBeanNamesForAnnotation(): Array<out String>
Content copied to clipboard
Extension for ListableBeanFactory.getBeanNamesForAnnotation providing a
getBeansOfType<Foo>()
variant.getBeanNamesForType
Link copied to clipboard
inline fun <T : Any> ListableBeanFactory.getBeanNamesForType(includeNonSingletons: Boolean = true, allowEagerInit: Boolean = true): Array<out String>
Content copied to clipboard
Extension for ListableBeanFactory.getBeanNamesForType providing a
getBeanNamesForType<Foo>()
variant.getBeanProvider
Link copied to clipboard
getBeansOfType
Link copied to clipboard
inline fun <T : Any> ListableBeanFactory.getBeansOfType(includeNonSingletons: Boolean = true, allowEagerInit: Boolean = true): Map<String, T>
Content copied to clipboard
getBeansWithAnnotation
Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.getBeansWithAnnotation(): Map<String, Any>
Content copied to clipboard
Extension for ListableBeanFactory.getBeansWithAnnotation providing a
getBeansWithAnnotation<Foo>()
variant.