public class

AspectJProxyFactory

extends ProxyCreatorSupport
java.lang.Object
   ↳ org.springframework.aop.framework.ProxyConfig
     ↳ org.springframework.aop.framework.AdvisedSupport
       ↳ org.springframework.aop.framework.ProxyCreatorSupport
         ↳ org.springframework.aop.aspectj.annotation.AspectJProxyFactory

Class Overview

AspectJ-based proxy factory, allowing for programmatic building of proxies which include AspectJ aspects (code style as well Java 5 annotation style).

Summary

[Expand]
Inherited Fields
From class org.springframework.aop.framework.AdvisedSupport
Public Constructors
AspectJProxyFactory()
Create a new AspectJProxyFactory.
AspectJProxyFactory(Object target)
Create a new AspectJProxyFactory.
AspectJProxyFactory(Class[] interfaces)
Create a new AspectJProxyFactory.
Public Methods
void addAspect(Object aspectInstance)
Add the supplied aspect instance to the chain.
void addAspect(Class aspectClass)
Add an aspect of the supplied type to the end of the advice chain.
<T> T getProxy(ClassLoader classLoader)
Create a new proxy according to the settings in this factory.
<T> T getProxy()
Create a new proxy according to the settings in this factory.
[Expand]
Inherited Methods
From class org.springframework.aop.framework.ProxyCreatorSupport
From class org.springframework.aop.framework.AdvisedSupport
From class org.springframework.aop.framework.ProxyConfig
From class java.lang.Object
From interface org.springframework.aop.TargetClassAware
From interface org.springframework.aop.framework.Advised

Public Constructors

public AspectJProxyFactory ()

Create a new AspectJProxyFactory.

public AspectJProxyFactory (Object target)

Create a new AspectJProxyFactory.

Will proxy all interfaces that the given target implements.

Parameters
target the target object to be proxied

public AspectJProxyFactory (Class[] interfaces)

Create a new AspectJProxyFactory. No target, only interfaces. Must add interceptors.

Public Methods

public void addAspect (Object aspectInstance)

Add the supplied aspect instance to the chain. The type of the aspect instance supplied must be a singleton aspect. True singleton lifecycle is not honoured when using this method - the caller is responsible for managing the lifecycle of any aspects added in this way.

Parameters
aspectInstance the AspectJ aspect instance

public void addAspect (Class aspectClass)

Add an aspect of the supplied type to the end of the advice chain.

Parameters
aspectClass the AspectJ aspect class

public T getProxy (ClassLoader classLoader)

Create a new proxy according to the settings in this factory.

Can be called repeatedly. Effect will vary if we've added or removed interfaces. Can add and remove interceptors.

Uses the given class loader (if necessary for proxy creation).

Parameters
classLoader the class loader to create the proxy with
Returns
  • the new proxy

public T getProxy ()

Create a new proxy according to the settings in this factory.

Can be called repeatedly. Effect will vary if we've added or removed interfaces. Can add and remove interceptors.

Uses a default class loader: Usually, the thread context class loader (if necessary for proxy creation).

Returns
  • the new proxy