Tag Archive for aspect oriented programming

Intro to Aspect Oriented Programming with AspectJ

You have all your project done and ready to rock. After a couple of months, the customer decides to add more features and, guess what, that means you will have to alter significant part of your well structured code with clutter that was not really part of the original specification. If there only was a way to add the extra functionality without altering the code…

And there is! That’s why AOP, Aspect Oriented Programming, exists. Don’t be scared by the name: AOP is nothing more than add extra code to your code without altering your code.

Read the rest of this entry »