类 AbstractBeanFactoryBasedTargetSource
- java.lang.Object
- org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource
- 所有已实现的接口:
Serializable,TargetClassAware,TargetSource,Aware,BeanFactoryAware
public abstract class AbstractBeanFactoryBasedTargetSource extends Object implements TargetSource, BeanFactoryAware, Serializable
Base class forTargetSourceimplementations that are based on a SpringBeanFactory, delegating to Spring-managed bean instances.Subclasses can create prototype instances or lazily access a singleton target, for example. See
LazyInitTargetSourceandAbstractPrototypeBasedTargetSource's subclasses for concrete strategies.BeanFactory-based TargetSources are serializable. This involves disconnecting the current target and turning into a
SingletonTargetSource.- 从以下版本开始:
- 1.1.4
- 作者:
- Juergen Hoeller, Rod Johnson
- 另请参阅:
BeanFactory.getBean(java.lang.String),LazyInitTargetSource,PrototypeTargetSource,ThreadLocalTargetSource,CommonsPool2TargetSource, 序列化表格
构造器概要
构造器 构造器 说明 AbstractBeanFactoryBasedTargetSource()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 protected voidcopyFrom(AbstractBeanFactoryBasedTargetSource other)Copy configuration from the other AbstractBeanFactoryBasedTargetSource object.booleanequals(Object other)BeanFactorygetBeanFactory()Return the owning BeanFactory.StringgetTargetBeanName()Return the name of the target bean in the factory.Class<?>getTargetClass()Return the type of targets returned by thisTargetSource.inthashCode()booleanisStatic()Will all calls toTargetSource.getTarget()return the same object?voidreleaseTarget(Object target)Release the given target object obtained from theTargetSource.getTarget()method, if any.voidsetBeanFactory(BeanFactory beanFactory)Set the owning BeanFactory.voidsetTargetBeanName(String targetBeanName)Set the name of the target bean in the factory.voidsetTargetClass(Class<?> targetClass)Specify the target class explicitly, to avoid any kind of access to the target bean (for example, to avoid initialization of a FactoryBean instance).StringtoString()从接口继承的方法 org.springframework.aop.TargetSource
getTarget
构造器详细资料
AbstractBeanFactoryBasedTargetSource
public AbstractBeanFactoryBasedTargetSource()
方法详细资料
setTargetBeanName
public void setTargetBeanName(String targetBeanName)
Set the name of the target bean in the factory.The target bean should not be a singleton, else the same instance will always be obtained from the factory, resulting in the same behavior as provided by
SingletonTargetSource.- 参数:
targetBeanName- name of the target bean in the BeanFactory that owns this interceptor- 另请参阅:
SingletonTargetSource
getTargetBeanName
public String getTargetBeanName()
Return the name of the target bean in the factory.
setTargetClass
public void setTargetClass(Class<?> targetClass)
Specify the target class explicitly, to avoid any kind of access to the target bean (for example, to avoid initialization of a FactoryBean instance).Default is to detect the type automatically, through a
getTypecall on the BeanFactory (or even a fullgetBeancall as fallback).
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
Set the owning BeanFactory. We need to save a reference so that we can use thegetBeanmethod on every invocation.- 指定者:
setBeanFactory在接口中BeanFactoryAware- 参数:
beanFactory- owning BeanFactory (nevernull). The bean can immediately call methods on the factory.- 另请参阅:
BeanInitializationException
getBeanFactory
public BeanFactory getBeanFactory()
Return the owning BeanFactory.
getTargetClass
public Class<?> getTargetClass()
从接口复制的说明:TargetSourceReturn the type of targets returned by thisTargetSource.Can return
null, although certain usages of aTargetSourcemight just work with a predetermined target class.- 指定者:
getTargetClass在接口中TargetClassAware- 指定者:
getTargetClass在接口中TargetSource- 返回:
- the type of targets returned by this
TargetSource
isStatic
public boolean isStatic()
从接口复制的说明:TargetSourceWill all calls toTargetSource.getTarget()return the same object?In that case, there will be no need to invoke
TargetSource.releaseTarget(Object), and the AOP framework can cache the return value ofTargetSource.getTarget().- 指定者:
isStatic在接口中TargetSource- 返回:
trueif the target is immutable- 另请参阅:
TargetSource.getTarget()
releaseTarget
public void releaseTarget(Object target) throws Exception
从接口复制的说明:TargetSourceRelease the given target object obtained from theTargetSource.getTarget()method, if any.- 指定者:
releaseTarget在接口中TargetSource- 参数:
target- object obtained from a call toTargetSource.getTarget()- 抛出:
Exception- if the object can't be released
copyFrom
protected void copyFrom(AbstractBeanFactoryBasedTargetSource other)
Copy configuration from the other AbstractBeanFactoryBasedTargetSource object. Subclasses should override this if they wish to expose it.- 参数:
other- object to copy configuration from