views:

182

answers:

1

Do you know any designe pattern for Aspect Oriented Programming? Do you know a book or a list of such design patterns? I am looking for design patters which specifically could be implemented in AOP. I am not interested in implementing classical DPs in AOP. I'm looking for problems which could be solved much more easier using AOP. Even a single design pattern is welcomed.

+1  A: 

Check out Foundations of AOP for J2EE Development. It lists many possible design patterns handled via AOP.

Reed Copsey
It would be more useful to make the link text the title of the book rather than "this book".
cletus
Good point. Corrected.
Reed Copsey
Sorry. Probably, I didn't provide enough details about my question. I actually am looking for design patters which specifically could be implemented in AOP. I am not interested in implementing classical DPs in AOP. I'm looking for problems which could be solved much more easier using AOP.
The referenced book shows that. Just realize that no design pattern is AOP ONLY - since the code introduced by AOP is code you could always implement, as well.
Reed Copsey