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.
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.
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) Deprecated.SharedSessionBuilder.statementInspector
(StatementInspector statementInspector) Deprecated.StatelessSessionBuilder.statementInspector
(StatementInspector statementInspector) Deprecated.This operation exposes the SPI typeStatementInspector
and is therefore a layer-breaker. -
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(java.util.function.UnaryOperator<java.lang.String>)
-
Uses of StatementInspector in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return StatementInspectorModifier and TypeMethodDescriptionAbstractDelegatingSessionFactoryOptions.getStatementInspector()
SessionFactoryOptions.getStatementInspector()
The defaultStatementInspector
for this factory.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.creation.spi
Methods in org.hibernate.engine.creation.spi with parameters of type StatementInspectorModifier and TypeMethodDescriptionSessionBuilderImplementor.statementInspector
(StatementInspector statementInspector) SharedSessionBuilderImplementor.statementInspector
(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type StatementInspectorModifier and TypeMethodDescriptionAbstractDelegatingSessionBuilder.statementInspector
(StatementInspector statementInspector) Deprecated.AbstractDelegatingSharedSessionBuilder.statementInspector
(StatementInspector statementInspector) Deprecated. -
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.spi
Fields in org.hibernate.resource.jdbc.spi declared as StatementInspectorMethods in org.hibernate.resource.jdbc.spi that return StatementInspector
StatementInspector
and is therefore a layer-breaker.