| Author |
Problem with Spring AOP+AspectJ
|
Vladimir Koba
Greenhorn
Joined: May 29, 2012
Posts: 4
|
|
Hi all! I want to log every invoke public method in my class. So, i create LoggingAspect class for logging, and configure Spring on xml.
When i start my application, all methods logging three times, for example:
Entering method selectAllCompanies...
Entering method selectAllCompanies...
Entering method selectAllCompanies...
Really, methods invokes one times. I think, that problem in a pointcut, but i'm not sure.
aop-context.xml
LoggingAspect.java
|
 |
Bill Gorder
Bartender
Joined: Mar 07, 2010
Posts: 1282
|
|
I think this is fixed in newer versions of Spring.
Your problem I believe is that other proxying is being done on your DAO (Transactional etc) and your advice is being called multiple times before the actual POJO is invoked.
See if this link helps you at all.
http://forum.springframework.net/showthread.php?5528-Advice-called-multiple-times-when-using-AttributeMatchMethodPointCut
Thanks,
|
[How To Ask Questions][Read before you PM me]
|
 |
 |
|
|
subject: Problem with Spring AOP+AspectJ
|
|
|