Uses of Interface
org.hibernate.resource.jdbc.spi.StatementInspector
Packages that use StatementInspector
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package contains the interfaces that make up the bootstrap API
for Hibernate.
A range of SPIs allowing integration with—and customization of—the process of building metadata.
This package defines APIs for configuring Hibernate.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate
.The packages in this namespace are responsible for implementing certain
requirements of the JPA specification, especially things which are only
needed when Hibernate is acting as a JPA persistence provider.
Implementation of the SPI for managing JDBC connections and other heavyweight resources.
An SPI for managing JDBC connections and other heavyweight resources, based around the
idea of a "JDBC session".
-
Uses of StatementInspector in org.hibernate
Methods in org.hibernate with parameters of type StatementInspectorModifier and TypeMethodDescriptionSessionBuilder.statementInspector
(StatementInspector statementInspector) Applies the givenStatementInspector
to the session.SharedSessionBuilder.statementInspector
(StatementInspector statementInspector) StatelessSessionBuilder.statementInspector
(StatementInspector statementInspector) Applies the givenStatementInspector
to the stateless session. -
Uses of StatementInspector in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type StatementInspectorModifier and TypeMethodDescriptionSessionFactoryBuilder.applyStatementInspector
(StatementInspector statementInspector) Specifies aStatementInspector
associated with theSessionFactory
, which will be used by all sessions unless a statement inspector is explicitly specified usingSessionBuilder.statementInspector(org.hibernate.resource.jdbc.spi.StatementInspector)
-
Uses of StatementInspector in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return StatementInspectorMethods in org.hibernate.boot.internal with parameters of type StatementInspectorModifier and TypeMethodDescriptionSessionFactoryBuilderImpl.applyStatementInspector
(StatementInspector statementInspector) void
SessionFactoryOptionsBuilder.applyStatementInspector
(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return StatementInspectorModifier and TypeMethodDescriptionAbstractDelegatingSessionFactoryOptions.getStatementInspector()
SessionFactoryOptions.getStatementInspector()
Methods in org.hibernate.boot.spi with parameters of type StatementInspectorModifier and TypeMethodDescriptionAbstractDelegatingSessionFactoryBuilder.applyStatementInspector
(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.cfg
Methods in org.hibernate.cfg that return StatementInspectorModifier and TypeMethodDescriptionConfiguration.getStatementInspector()
TheStatementInspector
, if any, that was added to this configuration.Methods in org.hibernate.cfg with parameters of type StatementInspectorModifier and TypeMethodDescriptionConfiguration.setStatementInspector
(StatementInspector statementInspector) Specify aStatementInspector
to be added to this configuration. -
Uses of StatementInspector in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type StatementInspectorModifier and TypeMethodDescriptionAbstractDelegatingSessionBuilder.statementInspector
(StatementInspector statementInspector) AbstractDelegatingSharedSessionBuilder.statementInspector
(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.internal
Methods in org.hibernate.internal that return StatementInspectorModifier and TypeMethodDescriptionJdbcSessionContextImpl.getStatementInspector()
SessionCreationOptions.getStatementInspector()
SessionFactoryImpl.SessionBuilderImpl.getStatementInspector()
SessionFactoryImpl.StatelessSessionBuilderImpl.getStatementInspector()
Methods in org.hibernate.internal with parameters of type StatementInspectorModifier and TypeMethodDescriptionSessionFactoryImpl.SessionBuilderImpl.statementInspector
(StatementInspector statementInspector) SessionFactoryImpl.StatelessSessionBuilderImpl.statementInspector
(StatementInspector statementInspector) Constructors in org.hibernate.internal with parameters of type StatementInspectorModifierConstructorDescriptionJdbcSessionContextImpl
(SessionFactoryImplementor sessionFactory, StatementInspector statementInspector, PhysicalConnectionHandlingMode connectionHandlingMode, JdbcServices jdbcServices, BatchBuilder batchBuilder, JdbcEventHandler jdbcEventHandler) -
Uses of StatementInspector in org.hibernate.jpa
Methods in org.hibernate.jpa with parameters of type StatementInspectorModifier and TypeMethodDescriptionHibernatePersistenceConfiguration.statementInspector
(StatementInspector inspector) Specify a StatementInspector to be applied to all Sessions/EntityManagersMethod parameters in org.hibernate.jpa with type arguments of type StatementInspectorModifier and TypeMethodDescriptionHibernatePersistenceConfiguration.statementInspector
(Class<? extends StatementInspector> inspectorImpl) Specify a StatementInspector to be applied to all Sessions/EntityManagers -
Uses of StatementInspector in org.hibernate.resource.jdbc.internal
Classes in org.hibernate.resource.jdbc.internal that implement StatementInspectorFields in org.hibernate.resource.jdbc.internal declared as StatementInspectorModifier and TypeFieldDescriptionstatic final StatementInspector
EmptyStatementInspector.INSTANCE
The singleton reference. -
Uses of StatementInspector in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return StatementInspector -
Uses of StatementInspector in org.hibernate.testing.jdbc
Classes in org.hibernate.testing.jdbc that implement StatementInspector -
Uses of StatementInspector in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit with type parameters of type StatementInspectorModifier and TypeMethodDescription<T extends StatementInspector>
TEntityManagerFactoryScope.getStatementInspector
(Class<T> type) <T extends StatementInspector>
TSessionFactoryScope.getStatementInspector
(Class<T> type) Methods in org.hibernate.testing.orm.junit that return StatementInspectorModifier and TypeMethodDescriptionEntityManagerFactoryScope.getStatementInspector()
SessionFactoryScope.getStatementInspector()