Class FallbackBeanInstanceProducer
- java.lang.Object
-
- org.hibernate.resource.beans.internal.FallbackBeanInstanceProducer
-
- All Implemented Interfaces:
BeanInstanceProducer
public class FallbackBeanInstanceProducer extends Object implements BeanInstanceProducer
BeanInstanceProducerimplementation based on direct instantiation. Usually, this is used when either:- there is no configured back-end container, or
- the back-end container did not define a bean for this class.
-
-
Field Summary
Fields Modifier and Type Field Description static FallbackBeanInstanceProducerINSTANCESingleton access
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <B> BproduceBeanInstance(Class<B> beanType)Produce a bean instance<B> BproduceBeanInstance(String name, Class<B> beanType)Produce a named bean instance
-
-
-
Field Detail
-
INSTANCE
public static final FallbackBeanInstanceProducer INSTANCE
Singleton access
-
-
Method Detail
-
produceBeanInstance
public <B> B produceBeanInstance(Class<B> beanType)
Description copied from interface:BeanInstanceProducerProduce a bean instance- Specified by:
produceBeanInstancein interfaceBeanInstanceProducer- Parameters:
beanType- The Java type of bean to produce
-
produceBeanInstance
public <B> B produceBeanInstance(String name, Class<B> beanType)
Description copied from interface:BeanInstanceProducerProduce a named bean instance- Specified by:
produceBeanInstancein interfaceBeanInstanceProducer- Parameters:
name- The bean namebeanType- The Java type that the produced bean should be typed as
-
-