| Article: |
Aspect-Oriented Programming and JBoss | |
| Subject: | Production | |
| Date: | 2003-05-30 09:40:03 | |
| From: | anonymous2 | |
|
Response to: Production
|
||
|
Another example is hooks for notifications. No more of the syntax-sugar of Listener interfaces and such.
|
||
Showing messages 1 through 1 of 1.
-
Production
2003-05-30 12:00:15 anonymous2 [View]



What I found when I used the Dependency mechanism on a large scale project was that I inititally wanted some sort of aspect mechanism (AOP wasn't around at the time). But that later, during debugging, I was thankful that I could adress the listener/notification issues on a case-by-case basis by inspecting the code.
I also kept the number of central broadcasters to a minimum. If I were to add notification to every method of every class I wouldn't have a good grasp of which notification was the RIGHT notification to listen to.
I understand how these issues are addressed when I am writing the code in a standard imperative manner. How are these addressed by AOP?