org.springframework.aop.framework.autoproxy.target
Class QuickTargetSourceCreator
java.lang.Object
   org.springframework.aop.framework.autoproxy.target.AbstractBeanFactoryBasedTargetSourceCreator
org.springframework.aop.framework.autoproxy.target.AbstractBeanFactoryBasedTargetSourceCreator
       org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator
org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator
- All Implemented Interfaces: 
- TargetSourceCreator, BeanFactoryAware, DisposableBean
- public class QuickTargetSourceCreator 
- extends AbstractBeanFactoryBasedTargetSourceCreator
Convenient TargetSourceCreator using bean name prefixes to create one of three
 well-known TargetSource types: 
 
: CommonsPoolTargetSource
 % ThreadLocalTargetSource
 ! PrototypeTargetSource
- Author:
- Rod Johnson
- See Also:
- CommonsPoolTargetSource,- ThreadLocalTargetSource,- PrototypeTargetSource
 
 
 
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
PREFIX_COMMONS_POOL
public static final String PREFIX_COMMONS_POOL
- See Also:
- Constant Field Values
PREFIX_THREAD_LOCAL
public static final String PREFIX_THREAD_LOCAL
- See Also:
- Constant Field Values
PREFIX_PROTOTYPE
public static final String PREFIX_PROTOTYPE
- See Also:
- Constant Field Values
QuickTargetSourceCreator
public QuickTargetSourceCreator()
createBeanFactoryBasedTargetSource
protected final AbstractBeanFactoryBasedTargetSource createBeanFactoryBasedTargetSource(Class beanClass,
                                                                                        String beanName)
- Description copied from class: AbstractBeanFactoryBasedTargetSourceCreator
- Subclasses must implement this method to return a new AbstractPrototypeBasedTargetSource
 if they wish to create a custom TargetSource for this bean, or nullif they are
 not interested it in, in which case no special target source will be created.
 Subclasses should not callsetTargetBeanNameorsetBeanFactoryon the AbstractPrototypeBasedTargetSource: This class' implementation ofgetTargetSource()will do that.
 
- 
- Specified by:
- createBeanFactoryBasedTargetSourcein class- AbstractBeanFactoryBasedTargetSourceCreator
 
- 
- Parameters:
- beanClass- the class of the bean to create a TargetSource for
- beanName- the name of the bean
- Returns:
- the AbstractPrototypeBasedTargetSource, or nullif we don't match this
 
Copyright © 2002-2008 The Spring Framework.