org.springframework.aop.target
Class SimpleBeanTargetSource
java.lang.Object
org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource
org.springframework.aop.target.SimpleBeanTargetSource
- All Implemented Interfaces:
- java.io.Serializable, TargetClassAware, TargetSource, BeanFactoryAware
public class SimpleBeanTargetSource
- extends AbstractBeanFactoryBasedTargetSource
Simple TargetSource
implementation,
freshly obtaining the specified target bean from its containing
Spring BeanFactory
.
Can obtain any kind of target bean: singleton, scoped, or prototype.
Typically used for scoped beans.
- Since:
- 2.0.3
- Author:
- Juergen Hoeller
- See Also:
- Serialized Form
Method Summary |
java.lang.Object |
getTarget()
Return a target instance. |
Methods inherited from class org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource |
copyFrom, equals, getBeanFactory, getTargetBeanName, getTargetClass, hashCode, isStatic, releaseTarget, setBeanFactory, setTargetBeanName, setTargetClass, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
SimpleBeanTargetSource
public SimpleBeanTargetSource()
getTarget
public java.lang.Object getTarget()
throws java.lang.Exception
- Description copied from interface:
TargetSource
- Return a target instance. Invoked immediately before the
AOP framework calls the "target" of an AOP method invocation.
- Returns:
- the target object, which contains the joinpoint
- Throws:
java.lang.Exception
- if the target object can't be resolved