Package org.springframework.aop.target
Class SimpleBeanTargetSource
- java.lang.Object
- org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource
- org.springframework.aop.target.SimpleBeanTargetSource
- All Implemented Interfaces:
Serializable,TargetClassAware,TargetSource,Aware,BeanFactoryAware
public class SimpleBeanTargetSource extends AbstractBeanFactoryBasedTargetSource
SimpleTargetSourceimplementation, freshly obtaining the specified target bean from its containing SpringBeanFactory.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
Field Summary
Fields inherited from class org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource
logger
Constructor Summary
Constructors Constructor Description SimpleBeanTargetSource()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetTarget()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
Constructor Detail
SimpleBeanTargetSource
public SimpleBeanTargetSource()
Method Detail
getTarget
public Object getTarget() throws Exception
Description copied from interface:TargetSourceReturn 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, or
nullif there is no actual target instance - Throws:
Exception- if the target object can't be resolved