Package org.springframework.aop.target
Class SingletonTargetSource
java.lang.Object
org.springframework.aop.target.SingletonTargetSource
- All Implemented Interfaces:
Serializable
,TargetClassAware
,TargetSource
Implementation of the
TargetSource
interface
that holds a given object. This is the default implementation of the TargetSource
interface, as used by the Spring AOP framework. There is usually no need to
create objects of this class in application code.
This class is serializable. However, the actual serializability of a SingletonTargetSource will depend on whether the target is serializable.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionSingletonTargetSource
(Object target) Create a new SingletonTargetSource for the given target. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Two invoker interceptors are equal if they have the same target or if the targets or the targets are equal.Return a target instance.Class<?>
Return the type of targets returned by thisTargetSource
.int
hashCode()
SingletonTargetSource uses the hash code of the target object.boolean
isStatic()
Will all calls toTargetSource.getTarget()
return the same object?toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.aop.TargetSource
releaseTarget
-
Constructor Details
-
SingletonTargetSource
Create a new SingletonTargetSource for the given target.- Parameters:
target
- the target object
-
-
Method Details
-
getTargetClass
Description copied from interface:TargetSource
Return the type of targets returned by thisTargetSource
.Can return
null
, although certain usages of aTargetSource
might just work with a predetermined target class.- Specified by:
getTargetClass
in interfaceTargetClassAware
- Specified by:
getTargetClass
in interfaceTargetSource
- Returns:
- the type of targets returned by this
TargetSource
-
getTarget
Description copied from interface:TargetSource
Return a target instance. Invoked immediately before the AOP framework calls the "target" of an AOP method invocation.- Specified by:
getTarget
in interfaceTargetSource
- Returns:
- the target object which contains the joinpoint,
or
null
if there is no actual target instance
-
isStatic
public boolean isStatic()Description copied from interface:TargetSource
Will 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()
.The default implementation returns
false
.- Specified by:
isStatic
in interfaceTargetSource
- Returns:
true
if the target is immutable- See Also:
-
equals
Two invoker interceptors are equal if they have the same target or if the targets or the targets are equal. -
hashCode
public int hashCode()SingletonTargetSource uses the hash code of the target object. -
toString
-