The Spring Framework is a very powerful library for J2EE development. It comes with an AOP implementation (based on proxies) that is in many cases sufficient in terms of what you need to do. However, there are many situations where you need a more full-blown AOP framework (such as AspectWerkz) to do the job.
On the other hand AspectWerkz (even though it has a decent API for configuration and management) could sometimes benefit from more finegrained and expressive configuration and life-cycle management, which is one thing that Spring does very well.
In short, it is sometimes beneficial to use these two frameworks together and I will now show you a first step on how you can make that happen.
AspectWerkz has a very open architecture in regards to instantiation, configuration and management of the aspects. Here I will show you how you can make use of this to take control over your aspects using Spring. (The concepts are the same for PicoContainer, HiveMind or a home-grown IoC implementation.)
In AspectWerkz instantiation, management and configuration of aspects is handled by an "aspect container" and to make it easier for users to provide their own custom implementation it provides the abstract org.codehaus.aspectwerkz.aspect.AbstractAspectContainer
class which handles all the nitty-gritty details.
All we have to do is to extend the org.codehaus.aspectwerkz.aspect.AbstractAspectContainer class and implement the abstract Object createAspect() method.
So let us do that. Here is the implementation of our SpringAspectContainer:
This is all that is needed implementation wise. Now we only have to define which aspects should be managed by our new container and configure the aspect in the Spring bean config file.
To tell the AspectWerkz system that we want to deploy a specific aspect in our custom aspect container we have to specify that in the regular aop.xml file like this:
For details on the aop.xml file (what it is, how it is used etc.) see the online documentation.
To configure the aspect we just configure it like any other Spring bean class:
For details on how to define your bean classes see the Spring documentation. But here are some explainations:
- id - specifies the name of the aspect if a custom name is define you that else use the class name of the aspect (which is the default name). Mandatory.
- class - specifies the class name of the aspect. Mandatory.
- singleton - specifies if the aspect will be instantiated using the prototype pattern or not. Mandatory.
- init-method - the init-method is the method that you are using to initialize the aspect. This method will be called when all the properties have been set. Optional.
- property - the metadata that you want to pass to the aspect (see the Spring documentation for details on how how to define properties). Optional.