12
votes
8answers
601 views
What is aspect-oriented programming?
I understand object oriented programming, and have been writing OO programs for a long time. People seem to talk about aspect-oriented programming, but I've never really learned what it is or how to …
12
votes
8answers
3k views
How do I intercept a method call in C#?
For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method …
11
votes
5answers
672 views
Help and Information about Aspect Oriented Programming
I'm a newcomer to the idea of aspect-oriented programming but I would like to explore the idea of using it on my project for handling logging, reporting, etc. To this end I have some questions:
…
11
votes
10answers
1k views
Do you use AOP (Aspect Oriented Programming) in production software?
AOP is an interesting programming paradigm in my opinion. However, there haven't been discussions about it yet here on stackoverflow (at least I couldn't find them). What do you think about it in …
10
votes
5answers
2k views
Aspect Oriented Programming vs. Object-Oriented Programming
Like most developers here and in the entire world, I have been developing software systems using object-oriented programming (OOP) techniques for many years. So when I read that aspect-oriented …
7
votes
4answers
772 views
PostSharp - il weaving - thoughts
I am considering using Postsharp framework to ease the burden of application method logging.
It basically allows me to adorn methods with logging attribute and at compile time injects the logging code …
6
votes
2answers
107 views
Best Aspect Oriented Framework for features / build performances in .net
Hi,
In various projects I worked with, we had to use some AOP or dependency injection framework.
We used Enterprise LIbrary, Unity and PostSharp.
For now, Postsharp is my best choice when it …
6
votes
4answers
194 views
Java: testing thread access to “not thread-safe” methods.
My strategy for threading issues in a Swing Java app is to divide methods in three types:
methods that should be accessed by the GUI thread. These methods should never block and may call swing …
6
votes
5answers
262 views
AOP… Should I unlearn OOP ?
I have skimmed the online documentation, read the wiki entry, the posts and the blogs, but I'm still puzzled.
What is, in a nutshell, Aspect Oriented Programming ?
Is it simply better then Object …
6
votes
1answer
170 views
AOP and Applying Security to UI Elements
I'm working on an application in which we are trying hard to keep Separation of Concerns as strongly as possible. We're finding that the cross-cutting concern of security creates a number of …
6
votes
7answers
479 views
What ever happened to Aspect Oriented Programming?
I remember in the early 2000's late 90s Aspect Oriented Programming was supposed to be the "Next Big Thing". Nowadays I see some AOP still around but it seems to have faded into the background.
5
votes
7answers
352 views
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this …
5
votes
1answer
85 views
What are the different methods for injecting cross-cutting concerns?
What are the different methods for injecting cross-cutting concerns into a class so that I can minimize the coupling of the classes involved while keeping the code testable (TDD or otherwise)?
For …
5
votes
3answers
319 views
Javascript function hooks
EDIT: OK, I believe the following solutions are valid:
Use the jQuery AOP plugin. It basically wraps the old function together with the hook into a function sandwich and reassigns it to the old …
5
votes
2answers
151 views
Where do I start with Aspect Oriented Programming?
So having read some of the PostSharp documentation presented as an answer to my previous question regarding passive logging …
