Tagged Questions

7
votes
4answers
153 views

Is AOP a type of decorator pattern?

I got asked this question in a interview. I clearly know what a decorator pattern is and how it can be used. But I was not able to think through this question in the interview. This is the actual ...
6
votes
7answers
669 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 ...
3
votes
3answers
414 views

Separating Business Rules from Business Processes

how do I externalize the business rules from the business processes so that I can add rules without touching the business process logic? For example, I have two business processes, say "Add Product" ...
2
votes
1answer
97 views

external argument injection to method calls in multiple target classes

I have a number of classes that call say Trace.WriteLine("LogSomethingClassSpecific"), in various methods all over the place. Now I would like some of those classes to make all their Trace calls like ...
2
votes
2answers
823 views

How to implement the Strategy Pattern in AOP

Can anyone tell me how to implement the Strategy Pattern in AOP? An example using Spring-AOP or AspectJ would be very helpful.
2
votes
3answers
274 views

Gang-of-four pattern usage in aspect-oriented-programming?

I am doing research on a SOA topic and i am trying to understand what gang of four say about aspect orientation. I also need to implement one of these pattern in AOP paradigm. What would be best ...
2
votes
1answer
463 views

Do you know any designe pattern for AOP?

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 ...
0
votes
2answers
82 views

Creating user events on certain actions. What is recommended solution?

This question regards how one can effectively create and persist event domain objects on certain system or user triggered events which themselves may or may not persist changes to the database. Im ...
0
votes
4answers
164 views

Is aspect oriented programming useful for providing implementations for interface based programming?

I was just curious about the subject. I have never used aspect oriented programming (intentionally), and I have only a small amount of knowledge about it. Here's my question (using logging as the ...