Package org.springframework.aop.framework
@NonNullApi
@NonNullFields
package org.springframework.aop.framework
Package containing Spring's basic AOP infrastructure, compliant with the
AOP Alliance interfaces.
Spring AOP supports proxying interfaces or classes, introductions, and offers static and dynamic pointcuts.
Any Spring AOP proxy can be cast to the ProxyConfig AOP configuration interface in this package to add or remove interceptors.
The ProxyFactoryBean is a convenient way to create AOP proxies in a BeanFactory or ApplicationContext. However, proxies can be created programmatically using the ProxyFactory class.
-
ClassDescriptionBase class for
BeanPostProcessor
implementations that apply a Spring AOPAdvisor
to specific beans.Convenient superclass forFactoryBean
types that produce singleton-scoped proxy objects.Interface to be implemented by classes that hold the configuration of a factory of AOP proxies.Base class for AOP proxy configuration managers.Listener to be registered onProxyCreatorSupport
objects Allows for receiving callbacks on activation and change of advice.Factory interface for advisor chains.Exception that gets thrown on illegal AOP configuration arguments.Class containing static methods used to obtain information about the current AOP invocation.Marker interface that indicates a bean that is part of Spring's AOP infrastructure.Delegate interface for a configured AOP proxy, allowing for the creation of actual proxy objects.Interface to be implemented by factories that are able to create AOP proxies based onAdvisedSupport
configuration objects.Utility methods for AOP proxy factories.A simple but definitive way of working out an advice chain for a Method, given anAdvised
object.DefaultAopProxyFactory
implementation, creating either a CGLIB proxy or a JDK dynamic proxy.Convenience superclass for configuration used in creating proxies, to ensure that all proxy creators have consistent properties.Base class for proxy factories.Factory for AOP proxies for programmatic use, rather than via declarative setup in a bean factory.FactoryBean
implementation that builds an AOP proxy based on beans in a SpringBeanFactory
.Base class with common functionality for proxy processors, in particular ClassLoader management and theProxyProcessorSupport.evaluateProxyInterfaces(java.lang.Class<?>, org.springframework.aop.framework.ProxyFactory)
algorithm.Spring's implementation of the AOP AllianceMethodInvocation
interface, implementing the extendedProxyMethodInvocation
interface.