JDBC性能优化


《Java Performance Tunning》 Chapter 16 - Tuning JDBC

Best practices to improve performance in JDBC
http://www.precisejava.com/javaperf/j2ee/JDBC.htm

如何实现JDBC性能优化:
http://book.51cto.com/art/200908/148097.htm

JDBC性能技巧:
http://hi.baidu.com/lszone/blog/item/f009316d440ecbfb421694b9.html

《Java Programming With Oracle Jdbc》 Chapter 19: Performance
http://onjava.com/pub/a/onjava/excerpt/oraclejdbc_19/index.html

JDBMonitor:
http://www.jdbmonitor.com/

p6spy:
http://www.p6spy.com/
An open source Java tool that intercepts and logs all database statements that use JDBC

JDBC SQL Profiler:
http://sourceforge.net/projects/sqlprofiler/
Have you ever wondered which database indexes you should create for your JDBC-based application ? This Swing-based SQL profiler tries to offer a tool to monitor which tables and columns are accessed the most in SQL queries to recommend index creation.

IronTrack SQL:
http://www.irongrid.com/ironeyesql
IronTrack SQL increases the visibility of performance problems from build to build through time-based views of JDBC performance metrics. IronTrack SQL easily enables Java performance tuning by displaying database usage over time, Overlaying and comparing performance datasets, and embedding performance testing with no source code changes.

Hibernate与JDBC性能测试:
http://www.cnblogs.com/zc22/archive/2010/07/14/1777276.html

原文地址:https://www.cnblogs.com/preftest/p/1929213.html