Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Intercepting sql calls in tomcat

Hi Frank.  We do this in the Glassbox application performance troubleshooting project. You can find the code, a link to an article I wrote describing it (Using AspectJ and JMX for performance management) and documentation at glassbox.com. If you want to advise execution inside a JDBC driver then you need to weave into the driver classes. We typically do this with load-time weaving though you could use inpath to do it at build time.

Hth,
Ron
Sent wirelessly via BlackBerry from T-Mobile.  

-----Original Message-----
From: "Luo, Frank" <Frank.Luo@xxxxxxxxxxxxxxx>
Date: Mon, 17 Jul 2006 14:41:15 
To:<aspectj-users@xxxxxxxxxxx>
Subject: [aspectj-users] Intercepting sql calls in tomcat

I am wondering if any one has an example on intercepting sql calls such as PreparedStatement.executeXXX() in Tomcat environment.
 
It sounds pretty basic, but I just couldn't see any java.sql.. calls being intercepted. 
 
Thx! 
 _______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top