Serialized Form
|
Package org.springframework.aop.framework |
serialVersionUID: 5228995671176612951L
readResolve
protected Object readResolve()
throws ObjectStreamException
- Initializes transient fields.
- Throws:
ObjectStreamException
writeReplace
protected Object writeReplace()
throws ObjectStreamException
- Serializes a copy of the state of this class, ignoring subclass state.
- Throws:
ObjectStreamException
targetSource
TargetSource targetSource
- Package-protected to allow direct access for efficiency
advisors
List<E> advisors
- List of Advisors. If an Advice is added, it will be wrapped
in an Advisor before being added to this List.
advisorArray
Advisor[] advisorArray
- Array updated on changes to the advisors list, which is easier
to manipulate internally.
interfaces
List<E> interfaces
- Interfaces to be implemented by the proxy. Held in List to keep the order
of registration, to create JDK proxy with specified order of interfaces.
advised
AdvisedSupport advised
- The configuration used to configure this proxy
constructorArgs
Object[] constructorArgs
constructorArgTypes
Class<T>[] constructorArgTypes
serialVersionUID: -8409359707199703185L
proxyTargetClass
boolean proxyTargetClass
optimize
boolean optimize
opaque
boolean opaque
exposeProxy
boolean exposeProxy
frozen
boolean frozen
interceptorNames
String[] interceptorNames
- Names of Advisor and Advice beans in the factory.
Default is for globals expansion only.
targetName
String targetName
- Name of the target or TargetSource bean. Null if the TargetSource is not specified in
the interceptorNames list.
autodetectInterfaces
boolean autodetectInterfaces
singleton
boolean singleton
advisorAdapterRegistry
AdvisorAdapterRegistry advisorAdapterRegistry
freezeProxy
boolean freezeProxy
- Indicates whether the proxy should be frozen before creation.
beanFactory
BeanFactory beanFactory
- Owning bean factory, which cannot be changed after this
object is initialized.
singletonInstance
Object singletonInstance
- If this is a singleton, the cached singleton proxy instance
|
Package org.springframework.aop.framework.adapter |
advice
AfterReturningAdvice advice
advice
MethodBeforeAdvice advice
|
Package org.springframework.aop.framework.autoproxy |
order
int order
- Default value is same as non-ordered
advisorAdapterRegistry
AdvisorAdapterRegistry advisorAdapterRegistry
- Default is global AdvisorAdapterRegistry
freezeProxy
boolean freezeProxy
- Indicates whether or not the proxy should be frozen. Overridden from super
to prevent the configuration from becoming frozen too early.
interceptorNames
String[] interceptorNames
- Default is no common interceptors
applyCommonInterceptorsFirst
boolean applyCommonInterceptorsFirst
customTargetSourceCreators
TargetSourceCreator[] customTargetSourceCreators
beanFactory
BeanFactory beanFactory
beanNames
List<E> beanNames
usePrefix
boolean usePrefix
advisorBeanNamePrefix
String advisorBeanNamePrefix
|
Package org.springframework.aop.interceptor |
prefix
String prefix
suffix
String suffix
hideProxyClassNames
boolean hideProxyClassNames
- Indicates whether or not proxy class names should be hidden when using dynamic loggers.
- See Also:
AbstractTraceInterceptor.setUseDynamicLogger(boolean)
enterMessage
String enterMessage
- The message for method entry.
exitMessage
String exitMessage
- The message for method exit.
exceptionMessage
String exceptionMessage
- The message for exceptions during method execution.
count
int count
readResolve
private Object readResolve()
- Required to support serialization. Replaces with canonical instance
on deserialization, protecting Singleton pattern.
Alternative to overriding the
equals method.
trackAllInvocations
boolean trackAllInvocations
|
Package org.springframework.aop.support |
order
int order
advice
Advice advice
readObject
private void readObject(ObjectInputStream ois)
throws IOException
- Throws:
IOException
patterns
String[] patterns
- Regular expressions to match
classFilter
ClassFilter classFilter
methodMatcher
MethodMatcher methodMatcher
clazz
Class<T> clazz
methodName
String methodName
evaluations
int evaluations
serialVersionUID: 1360502830817661569L
order
int order
advice
Advice advice
interfaces
Set<E> interfaces
pointcut
Pointcut pointcut
delegate
Object delegate
- Object that actually implements the interfaces.
May be "this" if a subclass implements the introduced interfaces.
order
int order
advice
Advice advice
readObject
private void readObject(ObjectInputStream ois)
throws IOException
- This method is implemented only to restore the logger.
We don't make the logger static as that would mean that subclasses
would use this class's log category.
- Throws:
IOException
publishedInterfaces
Set<E> publishedInterfaces
- Set of Class
mappedNames
List<E> mappedNames
order
int order
advice
Advice advice
patterns
String[] patterns
perl5
boolean perl5
pointcut
AbstractRegexpMethodPointcut pointcut
clazz
Class<T> clazz
order
int order
advice
Advice advice
|
Package org.springframework.aop.target |
serialVersionUID: -4721607536018568393L
writeReplace
protected Object writeReplace()
throws ObjectStreamException
- Replaces this object with a SingletonTargetSource on serialization.
Protected as otherwise it won't be invoked for subclasses.
(The
writeReplace() method must be visible to the class
being serialized.)
With this implementation of this method, there is no need to mark
non-serializable fields in this class or subclasses as transient.
- Throws:
ObjectStreamException
logger
Log logger
- Logger available to subclasses
targetBeanName
String targetBeanName
- Name of the target bean we will create on each invocation
targetClass
Class<T> targetClass
- Class of the target
beanFactory
BeanFactory beanFactory
- BeanFactory that owns this TargetSource. We need to hold onto this
reference so that we can create new prototype instances as necessary.
maxSize
int maxSize
- The maximum size of the pool
maxIdle
int maxIdle
minIdle
int minIdle
maxWait
long maxWait
timeBetweenEvictionRunsMillis
long timeBetweenEvictionRunsMillis
minEvictableIdleTimeMillis
long minEvictableIdleTimeMillis
whenExhaustedAction
byte whenExhaustedAction
pool
ObjectPool pool
- The Jakarta Commons
ObjectPool used to pool target objects
readResolve
private Object readResolve()
- Required to support serialization.
Replaces with canonical instance on deserialization,
protecting the Singleton pattern.
Alternative to overriding
equals.
serialVersionUID: 7497929212653839187L
target
Object target
- The current target object
target
Object target
serialVersionUID: 9031246629662423738L
target
Object target
- Target cached and invoked using reflection
targetInThread
ThreadLocal<T> targetInThread
- ThreadLocal holding the target associated with the current
thread. Unlike most ThreadLocals, which are static, this variable
is meant to be per thread per instance of the ThreadLocalTargetSource class.
targetSet
Set<E> targetSet
- Set of managed targets, enabling us to keep track of the targets we've created.
invocationCount
int invocationCount
hitCount
int hitCount
|
Package org.springframework.beans |
beanClass
Class<T> beanClass
beanClass
Class<T> beanClass
propertyName
String propertyName
propertyValueList
List<E> propertyValueList
- List of PropertyValue objects
propertyChangeEvent
PropertyChangeEvent propertyChangeEvent
beanWrapper
BeanWrapper beanWrapper
- BeanWrapper wrapping the target object for binding
propertyAccessExceptions
PropertyAccessException[] propertyAccessExceptions
- List of PropertyAccessException objects
name
String name
value
Object value
requiredType
Class<T> requiredType
|
Package org.springframework.beans.factory |
beanName
String beanName
resourceDescription
String resourceDescription
resourceDescription
String resourceDescription
beanName
String beanName
beanName
String beanName
- The name of the instance that was of the wrong type
requiredType
Class<T> requiredType
- The required type
actualType
Class<T> actualType
- The offending type
beanName
String beanName
- Name of the missing bean
beanType
Class<T> beanType
- Required bean type
|
Package org.springframework.beans.factory.access |
|
Package org.springframework.beans.factory.support |
|
Package org.springframework.beans.support |
property
String property
ignoreCase
boolean ignoreCase
ascending
boolean ascending
toggleAscendingOnProperty
boolean toggleAscendingOnProperty
source
List<E> source
refreshDate
Date refreshDate
sort
SortDefinition sort
sortUsed
SortDefinition sortUsed
pageSize
int pageSize
page
int page
newPageSet
boolean newPageSet
maxLinkedPages
int maxLinkedPages
sourceProvider
PagedListSourceProvider sourceProvider
locale
Locale locale
localeUsed
Locale localeUsed
filter
Object filter
filterUsed
Object filterUsed
|
Package org.springframework.context |
timestamp
long timestamp
- System time when the event happened
|
Package org.springframework.context.event |
|
Package org.springframework.context.support |
codes
String[] codes
arguments
Object[] arguments
defaultMessage
String defaultMessage
|
Package org.springframework.core |
cause
Throwable cause
- Root cause of this nested exception
cause
Throwable cause
- Root cause of this nested exception
|
Package org.springframework.core.enums |
label
String label
- A descriptive label for the enum.
code
Character code
- The unique code of this enum.
code
Short code
- The unique code of this enum.
readResolve
private Object readResolve()
- Return the resolved type safe static enum instance.
code
Short code
- The unique code of the enum.
code
String code
- The unique code of this enum.
|
Package org.springframework.dao |
expectedSize
int expectedSize
a