I\'m reading up on Spring at the moment and one of the examples used for a use of AOP is logging the start and end of method calls.
I\'ve also read that using AOP ca
I used Spring AOP for implementing logging so I share my observations:
this handle instead of handle wrapped by AOP) and thus cannot be logged. So all logging can happen only on interface boundaries. (This concerns using Proxy-based aspect weaving, there's an option of runtime subclassing with cglib, but I didn't use it)