Tag Archives: AOP

Aspect-oriented programming (AOP) with Spring.NET

The motivation of aspect-oriented programming is to separate program logic. Application can be devided in two concerns. 1. Core: Contains the program/business logic like calculation etc. 2. System: Contains system specific processes like logging. In this example, I show you how to implement a AOP based logger. Logging is something you need very often. But… Read More »