Added comments when CallMonitoringAspect called

CallMonitoringAspect is not invoked when spring-data-jpa is used.  Spent
4 hours trying to understand why jmx bean wasn't showing message counts.
Use JPA or JDBC if you want call counts exposed via JMX / AOP
This commit is contained in:
Joe Freeman 2015-09-30 21:20:34 -04:00
parent e8c944f6bb
commit 5a6c108efb
3 changed files with 4 additions and 4 deletions

View file

@ -26,6 +26,8 @@ import org.springframework.util.StopWatch;
/**
* Simple aspect that monitors call count and call invocation time. It uses JMX annotations and therefore can be
* monitored using any JMX console such as the jConsole
*
* This is only useful if you use JPA or JDBC. Spring-data-jpa doesn't have any correctly annotated classes to join on
*
* @author Rob Harrop
* @author Juergen Hoeller