Package org.springframework.beans.factory

Functions

Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.findAnnotationOnBean(beanName: String): T?

Extension for ListableBeanFactory.findAnnotationOnBean providing a findAnnotationOnBean<Foo>("foo") variant.

Link copied to clipboard
inline fun <T : Any> BeanFactory.getBean(): T

Extension for BeanFactory.getBean providing a getBean<Foo>() variant.

inline fun <T : Any> BeanFactory.getBean(vararg args: Any): T

Extension for BeanFactory.getBean providing a getBean<Foo>(arg1, arg2) variant.

inline fun <T : Any> BeanFactory.getBean(name: String): T

Extension for BeanFactory.getBean providing a getBean<Foo>("foo") variant.

Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.getBeanNamesForAnnotation(): Array<out String>

Extension for ListableBeanFactory.getBeanNamesForAnnotation providing a getBeanNamesForAnnotation<Foo>() variant.

Link copied to clipboard
inline fun <T : Any> ListableBeanFactory.getBeanNamesForType(includeNonSingletons: Boolean = true, allowEagerInit: Boolean = true): Array<out String>

Extension for ListableBeanFactory.getBeanNamesForType providing a getBeanNamesForType<Foo>() variant.

Link copied to clipboard
inline fun <T : Any> BeanFactory.getBeanProvider(): ObjectProvider<T>

Extension for BeanFactory.getBeanProvider providing a getBeanProvider<Foo>() variant. This extension is not subject to type erasure and retains actual generic type arguments.

Link copied to clipboard
inline fun <T : Any> ListableBeanFactory.getBeansOfType(includeNonSingletons: Boolean = true, allowEagerInit: Boolean = true): Map<String, T>

Extension for ListableBeanFactory.getBeansOfType providing a getBeansOfType<Foo>() variant.

Link copied to clipboard
inline fun <T : Annotation> ListableBeanFactory.getBeansWithAnnotation(): Map<String, Any>

Extension for ListableBeanFactory.getBeansWithAnnotation providing a getBeansWithAnnotation<Foo>() variant.