Getting SQL queries is particularly important to identify potential bottlenecks and understand what is doing an application.
We often use external tools like jamon, slf4j-jdbc and so on to get this information.
There are two main drawbacks:
- it often breaks a bit the configuration since you replace your driver by the library one and your jdbc url by another one (or at least your original one with some additional information)
- You need another library (find it, learn it etc…)
That’s why in OpenEJB and TomEE we added a property LogSql which simply logs all queries, no need of hard configuration, that’s just a boolean.
Continue reading →
Like this:
Like Loading...