Does anyone know what AOP features are different between AspectJ and PostSharp (yes I know they are for different languages and platforms)?
I'm trying to understand what kind of things AspectJ would allow that PostSharp would not, and vice versa.
|
feedback
|
|
PostSharp 2.0 is much closer to AspectJ than PostSharp 1.5 was. The comparison of PostSharp 1.5 to Spring AOP was justified, but is not any more with PostSharp 2.0. However, there are still some strong differences in approach.
From version 2.0, PostSharp comes with IDE tooling that partly cover the functionality of "AJDT" for Eclipse. | |||
|
feedback
|
|
From their documentation of PostSharp: http://doc.postsharp.org/1.5/##PostSharp.HxS/UserGuide/Laos/AspectKinds/Overview.html Supported types of join points: http://doc.postsharp.org/1.5/##PostSharp.HxS/UserGuide/CoreLibrary/CodeWeaver/Overview.html AspectJ provides a great deal more flexibility as the join points can be decidedly more complex, in order to do what you want. It appears that cflow, for example, can't be done with PostSharp. It is like Spring in that it is a stripped down version of AOP in order to make it easier to use. Update: Though I don't believe it is completely updated, this is a good idea as to what AspectJ supports: http://www.eclipse.org/aspectj/doc/released/progguide/index.html | |||||
feedback
|