I am reading Spring now, and one example used to use AOP registers the beginning and end of method calls.
I also read that using AOP can affect performance.
Does Spring AOP use a good idea for this type of logging? I understand that Spring uses Dynamic AOP, it would be better to use Static AOP (Like AspectJ) for this type of AOP.
In short, the coding policy of the company I work for requires a ridiculous amount of logging, and I want to reduce the amount of registration code I need to write and improve the readability of my code.
Am I barking the wrong tree?
java spring spring-aop logging aop
Omar Kooheji Jan 15 '10 at 11:22 2010-01-15 11:22
source share