|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.aop.target.AbstractLazyInitTargetSource
public abstract class AbstractLazyInitTargetSource
TargetSource
that will lazy initialize a user-managed object.
createObject()
method. This TargetSource
will invoke this
method the first time the proxy is accessed.
Useful when you need to pass a reference to some dependency to an object but you
don't actually want the dependency to be created until it is first used. A typical
scenario for this is a connection to a remote resource
createObject()
Field Summary | |
---|---|
protected org.apache.commons.logging.Log |
logger
Log instance for this class and sub-classes |
Constructor Summary | |
---|---|
AbstractLazyInitTargetSource()
|
Method Summary | |
---|---|
protected abstract Object |
createObject()
Sub-classes should implement this method to return the lazy initialized object. |
Object |
getTarget()
Returns the lazy-initialized target object, creating it if it doesn't exist. |
Class |
getTargetClass()
Default implementation returns null if the target is null
(it is hasn't yet been initialized) or the target class if the target has already
been initialized. |
boolean |
isStatic()
Will all calls to getTarget() return the same object? |
void |
releaseTarget(Object target)
No need to release target - no op. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final org.apache.commons.logging.Log logger
Log
instance for this class and sub-classes
Constructor Detail |
---|
public AbstractLazyInitTargetSource()
Method Detail |
---|
public Class getTargetClass()
null
if the target is null
(it is hasn't yet been initialized) or the target class if the target has already
been initialized. Sub-classes may wish to override this method to provide more
meaningful values when the target is still null.
getTargetClass
in interface TargetSource
public boolean isStatic()
TargetSource
getTarget()
return the same object?
In that case, there will be no need to invoke releaseTarget
,
and the AOP framework can cache the return value of getTarget()
.
isStatic
in interface TargetSource
TargetSource.getTarget()
public Object getTarget() throws Exception
getTarget
in interface TargetSource
Exception
- if the target object can't be resolvedcreateObject()
public void releaseTarget(Object target) throws Exception
releaseTarget
in interface TargetSource
target
- object obtained from a call to getTarget()
Exception
- if the object can't be releasedTargetSource.getTarget()
protected abstract Object createObject() throws Exception
Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |