Introduction In this article, we are going to see how we can do JDBC profiling using the VisualVM tool to find slow-running SQL queries or discover N+1 query issues. VisualVM VisualVM is an OSS tool that allows us to inspect the JVM and the Java applications running inside the Java Virtual Machine. You can download VisualVM from this link and install it on your system. After installing it, you just need to run the following executable: And you will get information about the Java applications that are currently running on your system:... Read More
The post JDBC Profiling with VisualVM appeared first on Vlad Mihalcea.