Uses of Interface
org.hibernate.resource.jdbc.spi.StatementInspector
-
Packages that use StatementInspector Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory, which represents an instance of Hibernate at runtime and is the source of new instances ofSessionandStatelessSession, the most important APIs exposing persistence-related operations for entities.org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.cfg This package defines APIs for configuring Hibernate.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.resource.jdbc.spi 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 StatementInspector Modifier and Type Method Description SessionBuilderSessionBuilder. statementInspector(StatementInspector statementInspector)Applies the givenStatementInspectorto the session. -
Uses of StatementInspector in org.hibernate.boot
Methods in org.hibernate.boot with parameters of type StatementInspector Modifier and Type Method Description SessionFactoryBuilderSessionFactoryBuilder. applyStatementInspector(StatementInspector statementInspector)Specifies aStatementInspectorassociated 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.spi
Methods in org.hibernate.boot.spi that return StatementInspector Modifier and Type Method Description StatementInspectorAbstractDelegatingSessionFactoryOptions. getStatementInspector()StatementInspectorSessionFactoryOptions. getStatementInspector()Methods in org.hibernate.boot.spi with parameters of type StatementInspector Modifier and Type Method Description TAbstractDelegatingSessionFactoryBuilder. applyStatementInspector(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.cfg
Methods in org.hibernate.cfg that return StatementInspector Modifier and Type Method Description StatementInspectorConfiguration. getStatementInspector()TheStatementInspector, if any, that was added to this configuration.Methods in org.hibernate.cfg with parameters of type StatementInspector Modifier and Type Method Description ConfigurationConfiguration. setStatementInspector(StatementInspector statementInspector)Specify aStatementInspectorto be added to this configuration. -
Uses of StatementInspector in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type StatementInspector Modifier and Type Method Description SessionBuilderAbstractDelegatingSessionBuilder. statementInspector(StatementInspector statementInspector)SharedSessionBuilderAbstractDelegatingSharedSessionBuilder. statementInspector(StatementInspector statementInspector) -
Uses of StatementInspector in org.hibernate.resource.jdbc.spi
Methods in org.hibernate.resource.jdbc.spi that return StatementInspector Modifier and Type Method Description StatementInspectorJdbcSessionContext. getStatementInspector()
-