Package | Description |
---|---|
org.aopalliance.intercept |
The AOP Alliance reflective interception abstraction.
|
org.springframework.aop |
Core Spring AOP interfaces, built on AOP Alliance AOP interoperability interfaces.
|
org.springframework.aop.aspectj |
AspectJ integration package.
|
org.springframework.aop.framework |
Package containing Spring's basic AOP infrastructure, compliant with the
AOP Alliance interfaces.
|
org.springframework.aop.framework.adapter |
SPI package allowing Spring AOP framework to handle arbitrary advice types.
|
org.springframework.aop.interceptor |
Provides miscellaneous interceptor implementations.
|
org.springframework.aop.support |
Convenience classes for using Spring's AOP API.
|
org.springframework.cache.interceptor |
AOP-based solution for declarative caching demarcation.
|
org.springframework.cache.jcache.interceptor |
AOP-based solution for declarative caching demarcation using JSR-107 annotations.
|
org.springframework.context.event |
Support classes for application events, like standard context events.
|
org.springframework.dao.support |
Support classes for DAO implementations,
providing miscellaneous utility methods.
|
org.springframework.ejb.access |
This package contains classes that allow easy access to EJBs.
|
org.springframework.jms.remoting |
Remoting classes for transparent Java-to-Java remoting via a JMS provider.
|
org.springframework.jmx.access |
Provides support for accessing remote MBean resources.
|
org.springframework.orm.hibernate5.support |
Classes supporting the
org.springframework.orm.hibernate5 package. |
org.springframework.remoting.caucho |
This package provides remoting classes for Caucho's Hessian protocol:
a proxy factory for accessing Hessian services, and an exporter for
making beans available to Hessian clients.
|
org.springframework.remoting.httpinvoker |
Remoting classes for transparent Java-to-Java remoting via HTTP invokers.
|
org.springframework.remoting.jaxws |
Remoting classes for Web Services via JAX-WS (the successor of JAX-RPC),
as included in Java 6 and Java EE 5.
|
org.springframework.remoting.rmi |
Remoting classes for conventional RMI and transparent remoting via
RMI invokers.
|
org.springframework.remoting.support |
Generic support classes for remoting implementations.
|
org.springframework.scheduling.annotation |
Java 5 annotation for asynchronous method execution.
|
org.springframework.transaction.interceptor |
AOP-based solution for declarative transaction demarcation.
|
org.springframework.validation.beanvalidation |
Support classes for integrating a JSR-303 Bean Validation provider
(such as Hibernate Validator) into a Spring ApplicationContext
and in particular with Spring's data binding and validation APIs.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ConstructorInterceptor
Intercepts the construction of a new object.
|
interface |
MethodInterceptor
Intercepts calls on an interface on its way to the target.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IntroductionInterceptor
Subinterface of AOP Alliance MethodInterceptor that allows additional interfaces
to be implemented by the interceptor, and available via a proxy using that
interceptor.
|
Modifier and Type | Class and Description |
---|---|
class |
AspectJAfterAdvice
Spring AOP advice wrapping an AspectJ after advice method.
|
class |
AspectJAfterThrowingAdvice
Spring AOP advice wrapping an AspectJ after-throwing advice method.
|
class |
AspectJAroundAdvice
Spring AOP around advice (MethodInterceptor) that wraps
an AspectJ advice method.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
ProxyFactory.getProxy(Class<T> proxyInterface,
Interceptor interceptor)
Create a new proxy for the given interface and interceptor.
|
Constructor and Description |
---|
ProxyFactory(Class<?> proxyInterface,
Interceptor interceptor)
Create a new ProxyFactory for the given interface and interceptor.
|
Modifier and Type | Class and Description |
---|---|
class |
AfterReturningAdviceInterceptor
Interceptor to wrap an
AfterReturningAdvice . |
class |
MethodBeforeAdviceInterceptor
Interceptor to wrap am
MethodBeforeAdvice . |
class |
ThrowsAdviceInterceptor
Interceptor to wrap an after-throwing advice.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMonitoringInterceptor
Base class for monitoring interceptors, such as performance monitors.
|
class |
AbstractTraceInterceptor
Base
MethodInterceptor implementation for tracing. |
class |
AsyncExecutionInterceptor
AOP Alliance
MethodInterceptor that processes method invocations
asynchronously, using a given AsyncTaskExecutor . |
class |
ConcurrencyThrottleInterceptor
Interceptor that throttles concurrent access, blocking invocations
if a specified concurrency limit is reached.
|
class |
CustomizableTraceInterceptor
MethodInterceptor implementation that allows for highly customizable
method-level tracing, using placeholders. |
class |
DebugInterceptor
AOP Alliance
MethodInterceptor that can be introduced in a chain
to display verbose information about intercepted invocations to the logger. |
class |
ExposeInvocationInterceptor
Interceptor that exposes the current
MethodInvocation
as a thread-local object. |
class |
JamonPerformanceMonitorInterceptor
Performance monitor interceptor that uses JAMon library to perform the
performance measurement on the intercepted method and output the stats.
|
class |
PerformanceMonitorInterceptor
Simple AOP Alliance
MethodInterceptor for performance monitoring. |
class |
SimpleTraceInterceptor
Simple AOP Alliance
MethodInterceptor that can be introduced
in a chain to display verbose trace information about intercepted method
invocations, with method entry and method exit info. |
Modifier and Type | Class and Description |
---|---|
class |
DelegatePerTargetObjectIntroductionInterceptor
Convenient implementation of the
IntroductionInterceptor interface. |
class |
DelegatingIntroductionInterceptor
Convenient implementation of the
IntroductionInterceptor interface. |
Modifier and Type | Class and Description |
---|---|
class |
CacheInterceptor
AOP Alliance MethodInterceptor for declarative cache
management using the common Spring caching infrastructure
(
Cache ). |
Modifier and Type | Class and Description |
---|---|
class |
JCacheInterceptor
AOP Alliance MethodInterceptor for declarative cache
management using JSR-107 caching annotations.
|
Modifier and Type | Class and Description |
---|---|
class |
EventPublicationInterceptor
Interceptor that publishes an
ApplicationEvent to all ApplicationListeners
registered with an ApplicationEventPublisher after each
successful method invocation. |
Modifier and Type | Class and Description |
---|---|
class |
PersistenceExceptionTranslationInterceptor
AOP Alliance MethodInterceptor that provides persistence exception translation
based on a given PersistenceExceptionTranslator.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractRemoteSlsbInvokerInterceptor
Base class for interceptors proxying remote Stateless Session Beans.
|
class |
AbstractSlsbInvokerInterceptor
Base class for AOP interceptors invoking local or remote Stateless Session Beans.
|
class |
LocalSlsbInvokerInterceptor
Invoker for a local Stateless Session Bean.
|
class |
LocalStatelessSessionProxyFactoryBean
Convenient
FactoryBean for local Stateless Session Bean (SLSB) proxies. |
class |
SimpleRemoteSlsbInvokerInterceptor
Basic invoker for a remote Stateless Session Bean.
|
class |
SimpleRemoteStatelessSessionProxyFactoryBean
Convenient
FactoryBean for remote SLSB proxies. |
Modifier and Type | Class and Description |
---|---|
class |
JmsInvokerClientInterceptor
MethodInterceptor for accessing a
JMS-based remote service. |
class |
JmsInvokerProxyFactoryBean
FactoryBean for JMS invoker proxies.
|
Modifier and Type | Class and Description |
---|---|
class |
MBeanClientInterceptor
MethodInterceptor that routes calls to an
MBean running on the supplied MBeanServerConnection . |
class |
MBeanProxyFactoryBean
Creates a proxy to a managed resource running either locally or remotely.
|
Modifier and Type | Class and Description |
---|---|
class |
OpenSessionInterceptor
Simple AOP Alliance
MethodInterceptor implementation that binds a new
Hibernate Session for each method invocation, if none bound before. |
Modifier and Type | Class and Description |
---|---|
class |
HessianClientInterceptor
MethodInterceptor for accessing a Hessian service. |
class |
HessianProxyFactoryBean
FactoryBean for Hessian proxies. |
Modifier and Type | Class and Description |
---|---|
class |
HttpInvokerClientInterceptor
MethodInterceptor for accessing an
HTTP invoker service. |
class |
HttpInvokerProxyFactoryBean
FactoryBean for HTTP invoker proxies. |
Modifier and Type | Class and Description |
---|---|
class |
JaxWsPortClientInterceptor
MethodInterceptor for accessing a
specific port of a JAX-WS service. |
class |
JaxWsPortProxyFactoryBean
FactoryBean for a specific port of a
JAX-WS service. |
Modifier and Type | Class and Description |
---|---|
class |
JndiRmiClientInterceptor
MethodInterceptor for accessing RMI services
from JNDI. |
class |
JndiRmiProxyFactoryBean
FactoryBean for RMI proxies from JNDI. |
class |
RmiClientInterceptor
MethodInterceptor for accessing conventional
RMI services or RMI invokers. |
class |
RmiProxyFactoryBean
FactoryBean for RMI proxies, supporting both conventional RMI services
and RMI invokers. |
Modifier and Type | Class and Description |
---|---|
class |
RemoteInvocationTraceInterceptor
AOP Alliance MethodInterceptor for tracing remote invocations.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotationAsyncExecutionInterceptor
Specialization of
AsyncExecutionInterceptor that delegates method execution to
an Executor based on the Async annotation. |
Modifier and Type | Class and Description |
---|---|
class |
TransactionInterceptor
AOP Alliance MethodInterceptor for declarative transaction
management using the common Spring transaction infrastructure
(
PlatformTransactionManager /
ReactiveTransactionManager ). |
Modifier and Type | Class and Description |
---|---|
class |
MethodValidationInterceptor
An AOP Alliance
MethodInterceptor implementation that delegates to a
JSR-303 provider for performing method-level validation on annotated methods. |