try to make StatementInspector a little more prominent in the javadoc

This commit is contained in:
Gavin 2023-01-09 13:06:09 +01:00
parent 8b86e082ef
commit a48422ee9b
2 changed files with 6 additions and 2 deletions

View File

@ -28,6 +28,7 @@ import org.hibernate.resource.jdbc.spi.LogicalConnectionImplementor;
* @author Lukasz Antoniak
* @author Brett Meyer
*/
@SuppressWarnings("resource")
class StatementPreparerImpl implements StatementPreparer {
private final JdbcCoordinatorImpl jdbcCoordinator;
private final JdbcServices jdbcServices;

View File

@ -6,7 +6,10 @@
*/
/**
* An SPI for managing JDBC connections and other heavyweight resources,
* based around the idea of a "JDBC session".
* An SPI for managing JDBC connections and other heavyweight resources, based around the
* idea of a {@linkplain org.hibernate.resource.jdbc.spi.JdbcSessionOwner "JDBC session"}.
* <p>
* The interface {@link org.hibernate.resource.jdbc.spi.StatementInspector} is especially
* useful for monitoring/intercepting SQL statements as they are sent to the database.
*/
package org.hibernate.resource.jdbc.spi;