What is a good example of a program written using aspect-oriented methods?

I'm not necessarily looking for an example of code written in AOP, but some code that carefully and efficiently divides into aspects rather than components so that I can read it and see how to do it well.

Most examples of aspects that I have seen are only a small part of the program (blocking, logging); I do not think that I have ever seen a complete non-trivial program, which was mainly divided by aspects.

Does anyone know the good ones?

+7
source share
1 answer

Spring Roo uses aspects quite a bit. IMO finding open source AOP open source is relatively unusual; most of them I saw that IRL is embedded in closed source, internal code.

There are several books that discuss the AOP application / architecture project that I found quite interesting, and there are quite a few documents that discuss non-canonical applications.

0
source

All Articles