try to make StatementInspector a little more prominent in the javadoc
This commit is contained in:
parent
8b86e082ef
commit
a48422ee9b
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue