Example usage for org.springframework.aop.framework AopProxy interface-usage

List of usage examples for org.springframework.aop.framework AopProxy interface-usage

Introduction

In this page you can find the example usage for org.springframework.aop.framework AopProxy interface-usage.

Usage

From source file org.springframework.aop.framework.OptimizedJdkDynamicAopProxy.java

/**
 * InvocationHandler implementation for the Spring AOP framework,
 * based on J2SE 1.3+ dynamic proxies.
 *
 * <p>Creates a J2SE proxy, implementing the interfaces exposed by the
 * proxy. Dynamic proxies cannot be used to proxy methods defined in

From source file org.springframework.aop.framework.JdkDynamicAopProxy.java

/**
 * JDK-based {@link AopProxy} implementation for the Spring AOP framework,
 * based on JDK {@link java.lang.reflect.Proxy dynamic proxies}.
 *
 * <p>Creates a dynamic proxy, implementing the interfaces exposed by
 * the AopProxy. Dynamic proxies <i>cannot</i> be used to proxy methods

From source file org.jboss.spring.aop.JBossAopProxy.java

/**
 * JBoss based AOP proxy.
 *
 * @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a>
 */
public class JBossAopProxy implements AopProxy {

From source file org.springframework.aop.framework.Cglib2AopProxy.java

/**
 * CGLIB2-based {@link AopProxy} implementation for the Spring AOP framework.
 * Requires CGLIB2 on the class path.
 *
 * <p>Built and tested against CGLIB 2.0.2, as of Spring 1.1.
 * It is recommended to use CGLIB 2.1+.

From source file org.springframework.aop.framework.CglibAopProxy.java

/**
 * CGLIB-based {@link AopProxy} implementation for the Spring AOP framework.
 *
 * <p>Objects of this type should be obtained through proxy factories,
 * configured by an {@link AdvisedSupport} object. This class is internal
 * to Spring's AOP framework and need not be used directly by client code.