views:

300

answers:

2

I 'm currently investigating the different styles of AOP in Java and I started with AspectJ. I try to get a good view on the different styles:

  • weaver
  • proxy
  • any others

Do you know a good tutorial or technology article about the different frameworks and techniques?

+1  A: 

I like the developerworks series AOP@Work. It might give you some further information.

david
+1  A: 

The SpringFramework guys have AOP in their framework. You can read a chapter about AOP in the Spring documentation (Chapter 6). Also, you can read how AOP is used for declarative transactions in Spring (Chapter 9).

Hope it helps!

Elliot Vargas