The Spring Framework

Serialized Form


Package org.springframework.aop

Class org.springframework.aop.AopInvocationException extends NestedRuntimeException implements Serializable


Package org.springframework.aop.aspectj

Class org.springframework.aop.aspectj.AspectJAdviceParameterNameDiscoverer.AmbiguousBindingException extends RuntimeException implements Serializable

Class org.springframework.aop.aspectj.AspectJExpressionPointcut extends AbstractExpressionPointcut implements Serializable

Serialized Fields

shadowMapCache

Map<K,V> shadowMapCache

pointcutParser

org.aspectj.weaver.tools.PointcutParser pointcutParser

pointcutDeclarationScope

Class<T> pointcutDeclarationScope

pointcutParameterNames

String[] pointcutParameterNames

pointcutParameterTypes

Class<T>[] pointcutParameterTypes

pointcutExpression

org.aspectj.weaver.tools.PointcutExpression pointcutExpression

Class org.springframework.aop.aspectj.AspectJExpressionPointcutAdvisor extends AbstractGenericPointcutAdvisor implements Serializable

Serialized Fields

pointcut

AspectJExpressionPointcut pointcut

Package org.springframework.aop.aspectj.annotation

Class org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator extends AspectJAwareAdvisorAutoProxyCreator implements Serializable

Serialized Fields

includePatterns

List<E> includePatterns

aspectJAdvisorFactory

AspectJAdvisorFactory aspectJAdvisorFactory

aspectJAdvisorsBuilder

BeanFactoryAspectJAdvisorsBuilder aspectJAdvisorsBuilder

Class org.springframework.aop.aspectj.annotation.AspectJProxyFactory extends ProxyCreatorSupport implements Serializable

Serialized Fields

aspectFactory

AspectJAdvisorFactory aspectFactory

Class org.springframework.aop.aspectj.annotation.NotAnAtAspectException extends AopConfigException implements Serializable

Serialized Fields

nonAspectClass

Class<T> nonAspectClass

Class org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.SyntheticInstantiationAdvisor extends DefaultPointcutAdvisor implements Serializable


Package org.springframework.aop.aspectj.autoproxy

Class org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator extends AbstractAdvisorAutoProxyCreator implements Serializable


Package org.springframework.aop.framework

Class org.springframework.aop.framework.AbstractSingletonProxyFactoryBean extends ProxyConfig implements Serializable

Serialized Fields

target

Object target

proxyInterfaces

Class<T>[] proxyInterfaces

preInterceptors

Object[] preInterceptors

postInterceptors

Object[] postInterceptors

advisorAdapterRegistry

AdvisorAdapterRegistry advisorAdapterRegistry
Default is global AdvisorAdapterRegistry


beanClassLoader

ClassLoader beanClassLoader

proxy

Object proxy

Class org.springframework.aop.framework.AdvisedSupport extends ProxyConfig implements Serializable

serialVersionUID: 2651364800145442165L

Serialization Methods

readResolve

private Object readResolve()
Initializes transient fields.


writeReplace

protected Object writeReplace()
Serializes a copy of the state of this class, ignoring subclass state.

Serialized Fields

targetSource

TargetSource targetSource
Package-protected to allow direct access for efficiency


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.


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.

Class org.springframework.aop.framework.AopConfigException extends NestedRuntimeException implements Serializable

Class org.springframework.aop.framework.Cglib2AopProxy.SerializableNoOp extends Object implements Serializable

Class org.springframework.aop.framework.ProxyConfig extends Object implements Serializable

serialVersionUID: -8409359707199703185L

Serialized Fields

proxyTargetClass

boolean proxyTargetClass

optimize

boolean optimize

opaque

boolean opaque

exposeProxy

boolean exposeProxy

frozen

boolean frozen

Class org.springframework.aop.framework.ProxyCreatorSupport extends AdvisedSupport implements Serializable

Serialized Fields

aopProxyFactory

AopProxyFactory aopProxyFactory
The AopProxyFactory to use


listeners

List<E> listeners
List of AdvisedSupportListener


active

boolean active
Set to true when the first AOP proxy has been created

Class org.springframework.aop.framework.ProxyFactory extends ProxyCreatorSupport implements Serializable

Class org.springframework.aop.framework.ProxyFactoryBean extends ProxyCreatorSupport implements Serializable

Serialized Fields

logger

Log logger

interceptorNames

String[] interceptorNames

targetName

String targetName

autodetectInterfaces

boolean autodetectInterfaces

singleton

boolean singleton

advisorAdapterRegistry

AdvisorAdapterRegistry advisorAdapterRegistry

freezeProxy

boolean freezeProxy
Indicates whether the proxy should be frozen before creation.


beanClassLoader

ClassLoader beanClassLoader

beanFactory

BeanFactory beanFactory
Owning bean factory, which cannot be changed after this object is initialized.


advisorChainInitialized

boolean advisorChainInitialized
Whether the advisor chain has already been initialized


singletonInstance

Object singletonInstance
If this is a singleton, the cached singleton proxy instance


Package org.springframework.aop.framework.adapter

Class org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor extends Object implements Serializable

Serialized Fields

advice

AfterReturningAdvice advice

Class org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor extends Object implements Serializable

Serialized Fields

advice

MethodBeforeAdvice advice

Class org.springframework.aop.framework.adapter.UnknownAdviceTypeException extends IllegalArgumentException implements Serializable


Package org.springframework.aop.framework.autoproxy

Class org.springframework.aop.framework.autoproxy.AbstractAdvisorAutoProxyCreator extends AbstractAutoProxyCreator implements Serializable

Serialized Fields

advisorRetrievalHelper

BeanFactoryAdvisorRetrievalHelper advisorRetrievalHelper

Class org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator extends ProxyConfig implements Serializable

Serialized Fields

logger

Log logger
Logger available to subclasses


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

beanClassLoader

ClassLoader beanClassLoader

beanFactory

BeanFactory beanFactory

targetSourcedBeans

Set<E> targetSourcedBeans
Set of bean name Strings, referring to all beans that this auto-proxy creator created a custom TargetSource for. Used to detect own pre-built proxies (from "postProcessBeforeInstantiation") in the "postProcessAfterInitialization" method.


advisedBeans

Set<E> advisedBeans

nonAdvisedBeans

Set<E> nonAdvisedBeans

Class org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator extends AbstractAutoProxyCreator implements Serializable

Serialized Fields

beanNames

List<E> beanNames

Class org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator extends AbstractAdvisorAutoProxyCreator implements Serializable

Serialized Fields

usePrefix

boolean usePrefix

advisorBeanNamePrefix

String advisorBeanNamePrefix

Class org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator extends AbstractAdvisorAutoProxyCreator implements Serializable

Serialized Fields

beanFactory

ConfigurableListableBeanFactory beanFactory

Package org.springframework.aop.interceptor

Class org.springframework.aop.interceptor.AbstractMonitoringInterceptor extends AbstractTraceInterceptor implements Serializable

Serialized Fields

prefix

String prefix

suffix

String suffix

Class org.springframework.aop.interceptor.AbstractTraceInterceptor extends Object implements Serializable

Serialized Fields

hideProxyClassNames

boolean hideProxyClassNames
Indicates whether or not proxy class names should be hidden when using dynamic loggers.

See Also:
AbstractTraceInterceptor.setUseDynamicLogger(boolean)

Class org.springframework.aop.interceptor.ClassLoaderAnalyzerInterceptor extends Object implements Serializable

Class org.springframework.aop.interceptor.ConcurrencyThrottleInterceptor extends ConcurrencyThrottleSupport implements Serializable

Class org.springframework.aop.interceptor.CustomizableTraceInterceptor extends AbstractTraceInterceptor implements Serializable

Serialized Fields

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.

Class org.springframework.aop.interceptor.DebugInterceptor extends SimpleTraceInterceptor implements Serializable

Serialized Fields

count

long count

Class org.springframework.aop.interceptor.ExposeInvocationInterceptor extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
Required to support serialization. Replaces with canonical instance on deserialization, protecting Singleton pattern. Alternative to overriding the equals method.

Class org.springframework.aop.interceptor.JamonPerformanceMonitorInterceptor extends AbstractMonitoringInterceptor implements Serializable

Serialized Fields

trackAllInvocations

boolean trackAllInvocations

Class org.springframework.aop.interceptor.PerformanceMonitorInterceptor extends AbstractMonitoringInterceptor implements Serializable

Class org.springframework.aop.interceptor.SimpleTraceInterceptor extends AbstractTraceInterceptor implements Serializable


Package org.springframework.aop.scope

Class org.springframework.aop.scope.ScopedProxyFactoryBean extends ProxyConfig implements Serializable

Serialized Fields

scopedTargetSource

SimpleBeanTargetSource scopedTargetSource
The TargetSource that manages scoping


targetBeanName

String targetBeanName
The name of the target bean


proxy

Object proxy
The cached singleton proxy


Package org.springframework.aop.support

Class org.springframework.aop.support.AbstractBeanFactoryPointcutAdvisor extends AbstractPointcutAdvisor implements Serializable

Serialized Fields

adviceBeanName

String adviceBeanName

beanFactory

BeanFactory beanFactory

advice

Advice advice

adviceMonitor

Object adviceMonitor

Class org.springframework.aop.support.AbstractExpressionPointcut extends Object implements Serializable

Serialized Fields

location

String location

expression

String expression

Class org.springframework.aop.support.AbstractGenericPointcutAdvisor extends AbstractPointcutAdvisor implements Serializable

Serialized Fields

advice

Advice advice

Class org.springframework.aop.support.AbstractPointcutAdvisor extends Object implements Serializable

Serialized Fields

order

int order

Class org.springframework.aop.support.AbstractRegexpMethodPointcut extends StaticMethodMatcherPointcut implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

patterns

String[] patterns
Regular expressions to match


excludedPatterns

String[] excludedPatterns
Regaular expressions not to match

Class org.springframework.aop.support.ComposablePointcut extends Object implements Serializable

serialVersionUID: -2743223737633663832L

Serialized Fields

classFilter

ClassFilter classFilter

methodMatcher

MethodMatcher methodMatcher

Class org.springframework.aop.support.ControlFlowPointcut extends Object implements Serializable

Serialized Fields

clazz

Class<T> clazz

methodName

String methodName

evaluations

int evaluations

Class org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor extends AbstractBeanFactoryPointcutAdvisor implements Serializable

Serialized Fields

pointcut

Pointcut pointcut

Class org.springframework.aop.support.DefaultIntroductionAdvisor extends Object implements Serializable

Serialized Fields

advice

Advice advice

interfaces

Set<E> interfaces

order

int order

Class org.springframework.aop.support.DefaultPointcutAdvisor extends AbstractGenericPointcutAdvisor implements Serializable

Serialized Fields

pointcut

Pointcut pointcut

Class org.springframework.aop.support.DelegatePerTargetObjectIntroductionInterceptor extends IntroductionInfoSupport implements Serializable

Serialized Fields

delegateMap

Map<K,V> delegateMap
Hold weak references to keys as we don't want to interfere with garbage collection..


defaultImplType

Class<T> defaultImplType

interfaceType

Class<T> interfaceType

Class org.springframework.aop.support.DelegatingIntroductionInterceptor extends IntroductionInfoSupport implements Serializable

Serialized Fields

delegate

Object delegate
Object that actually implements the interfaces. May be "this" if a subclass implements the introduced interfaces.

Class org.springframework.aop.support.DynamicMethodMatcherPointcutAdvisor extends DynamicMethodMatcherPointcut implements Serializable

Serialized Fields

order

int order
Deprecated. 

advice

Advice advice
Deprecated. 

Class org.springframework.aop.support.IntroductionInfoSupport extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException,
                        ClassNotFoundException
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
ClassNotFoundException
Serialized Fields

publishedInterfaces

Set<E> publishedInterfaces
Set of interface Classes

Class org.springframework.aop.support.JdkRegexpMethodPointcut extends AbstractRegexpMethodPointcut implements Serializable

Class org.springframework.aop.support.NameMatchMethodPointcut extends StaticMethodMatcherPointcut implements Serializable

Serialized Fields

mappedNames

List<E> mappedNames

Class org.springframework.aop.support.NameMatchMethodPointcutAdvisor extends AbstractGenericPointcutAdvisor implements Serializable

Serialized Fields

pointcut

NameMatchMethodPointcut pointcut

Class org.springframework.aop.support.Perl5RegexpMethodPointcut extends AbstractRegexpMethodPointcut implements Serializable

Class org.springframework.aop.support.RegexpMethodPointcutAdvisor extends AbstractGenericPointcutAdvisor implements Serializable

Serialized Fields

patterns

String[] patterns

perl5

boolean perl5

pointcut

AbstractRegexpMethodPointcut pointcut

pointcutMonitor

Object pointcutMonitor

Class org.springframework.aop.support.RootClassFilter extends Object implements Serializable

Serialized Fields

clazz

Class<T> clazz

Class org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor extends StaticMethodMatcherPointcut implements Serializable

Serialized Fields

order

int order

advice

Advice advice

Package org.springframework.aop.target

Class org.springframework.aop.target.AbstractBeanFactoryBasedTargetSource extends Object implements Serializable

serialVersionUID: -4721607536018568393L

Serialization Methods

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
Serialized Fields

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.

Class org.springframework.aop.target.AbstractPoolingTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Serialized Fields

maxSize

int maxSize
The maximum size of the pool

Class org.springframework.aop.target.AbstractPrototypeBasedTargetSource extends AbstractBeanFactoryBasedTargetSource implements Serializable

Class org.springframework.aop.target.CommonsPoolTargetSource extends AbstractPoolingTargetSource implements Serializable

Serialized Fields

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

Class org.springframework.aop.target.EmptyTargetSource extends Object implements Serializable

serialVersionUID: 3680494563553489691L

Serialization Methods

readResolve

private Object readResolve()
Returns the canonical instance on deserialization in case of no target class, thus protecting the Singleton pattern.

Serialized Fields

targetClass

Class<T> targetClass

isStatic

boolean isStatic

Class org.springframework.aop.target.HotSwappableTargetSource extends Object implements Serializable

serialVersionUID: 7497929212653839187L

Serialized Fields

target

Object target
The current target object

Class org.springframework.aop.target.LazyInitTargetSource extends AbstractBeanFactoryBasedTargetSource implements Serializable

Serialized Fields

target

Object target

Class org.springframework.aop.target.PrototypeTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Class org.springframework.aop.target.SimpleBeanTargetSource extends AbstractBeanFactoryBasedTargetSource implements Serializable

Class org.springframework.aop.target.SingletonTargetSource extends Object implements Serializable

serialVersionUID: 9031246629662423738L

Serialized Fields

target

Object target
Target cached and invoked using reflection

Class org.springframework.aop.target.ThreadLocalTargetSource extends AbstractPrototypeBasedTargetSource implements Serializable

Serialized Fields

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

Class org.springframework.beans.BeanInstantiationException extends FatalBeanException implements Serializable

Serialized Fields

beanClass

Class<T> beanClass

Class org.springframework.beans.BeansException extends NestedRuntimeException implements Serializable

Class org.springframework.beans.FatalBeanException extends BeansException implements Serializable

Class org.springframework.beans.InvalidPropertyException extends FatalBeanException implements Serializable

Serialized Fields

beanClass

Class<T> beanClass

propertyName

String propertyName

Class org.springframework.beans.MethodInvocationException extends PropertyAccessException implements Serializable

Class org.springframework.beans.MutablePropertyValues extends Object implements Serializable

Serialized Fields

propertyValueList

List<E> propertyValueList
List of PropertyValue objects


converted

boolean converted

Class org.springframework.beans.NotReadablePropertyException extends InvalidPropertyException implements Serializable

Class org.springframework.beans.NotWritablePropertyException extends InvalidPropertyException implements Serializable

Serialized Fields

possibleMatches

String[] possibleMatches

Class org.springframework.beans.NullValueInNestedPathException extends InvalidPropertyException implements Serializable

Class org.springframework.beans.PropertyAccessException extends BeansException implements Serializable

Serialized Fields

propertyChangeEvent

PropertyChangeEvent propertyChangeEvent

Class org.springframework.beans.PropertyBatchUpdateException extends BeansException implements Serializable

Serialized Fields

propertyAccessExceptions

PropertyAccessException[] propertyAccessExceptions
List of PropertyAccessException objects

Class org.springframework.beans.PropertyValue extends AttributeAccessorSupport implements Serializable

Serialized Fields

name

String name

value

Object value

source

Object source

converted

boolean converted

convertedValue

Object convertedValue

resolvedTokens

Object resolvedTokens
Package-visible field for caching the resolved property path tokens

Class org.springframework.beans.TypeMismatchException extends PropertyAccessException implements Serializable

Serialized Fields

value

Object value

requiredType

Class<T> requiredType

Package org.springframework.beans.factory

Class org.springframework.beans.factory.BeanCreationException extends FatalBeanException implements Serializable

Serialized Fields

beanName

String beanName

resourceDescription

String resourceDescription

Class org.springframework.beans.factory.BeanCreationNotAllowedException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.BeanCurrentlyInCreationException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.BeanDefinitionStoreException extends FatalBeanException implements Serializable

Serialized Fields

resourceDescription

String resourceDescription

beanName

String beanName

Class org.springframework.beans.factory.BeanInitializationException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.BeanIsAbstractException extends BeanCreationException implements Serializable

Class org.springframework.beans.factory.BeanIsNotAFactoryException extends BeanNotOfRequiredTypeException implements Serializable

Class org.springframework.beans.factory.BeanNotOfRequiredTypeException extends BeansException implements Serializable

Serialized Fields

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

Class org.springframework.beans.factory.CannotLoadBeanClassException extends FatalBeanException implements Serializable

Serialized Fields

resourceDescription

String resourceDescription

beanName

String beanName

beanClassName

String beanClassName

Class org.springframework.beans.factory.FactoryBeanNotInitializedException extends FatalBeanException implements Serializable

Class org.springframework.beans.factory.NoSuchBeanDefinitionException extends BeansException implements Serializable

Serialized Fields

beanName

String beanName
Name of the missing bean


beanType

Class<T> beanType
Required bean type