HHH-12697 - Headings problem in Hibernate Documentation 5.3.1 - Proxool configuration

HHH-12698 - Headings problem in Hibernate Documentation 5.3.1 - Transation Patterns
This commit is contained in:
Vlad Mihalcea 2018-06-28 14:47:51 +03:00
parent 4e8ff8c12d
commit 1855d23aef
11 changed files with 20 additions and 20 deletions

View File

@ -897,7 +897,7 @@ The property name defines the role (e.g. `allowed`) and the entity class name (e
`*hibernate.jacc_context_id*`:: `*hibernate.jacc_context_id*`::
A String identifying the policy context whose PolicyConfiguration interface is to be returned. The value passed to this parameter must not be null. A String identifying the policy context whose PolicyConfiguration interface is to be returned. The value passed to this parameter must not be null.
[[configurations-misc]] [[configurations-classloader]]
=== ClassLoaders properties === ClassLoaders properties
`*hibernate.classLoaders*`:: `*hibernate.classLoaders*`::

View File

@ -176,7 +176,7 @@ Should Hibernate load the `CreditCardPayment` from the cache as indicated by the
Because of all these intricacies, Hibernate only considers the base class `@Cacheable` and `@Cache` definition. Because of all these intricacies, Hibernate only considers the base class `@Cacheable` and `@Cache` definition.
==== ====
[[caching-query]] [[caching-entity]]
=== Entity cache === Entity cache
[[caching-entity-mapping-example]] [[caching-entity-mapping-example]]
@ -382,7 +382,7 @@ include::{sourcedir}/SecondLevelCacheTest.java[tags=caching-query-region-store-m
---- ----
==== ====
[[caching-query-region-native-example]] [[caching-query-region-store-mode-native-example]]
.Using custom query cache mode with Hibernate native API .Using custom query cache mode with Hibernate native API
==== ====
[source, JAVA, indent=0] [source, JAVA, indent=0]

View File

@ -1891,7 +1891,7 @@ include::{extrasdir}/basic/mapping-filter-join-table-persistence-example.sql[]
The collections can be filtered if the associated filter is enabled on the currently running Hibernate `Session`. The collections can be filtered if the associated filter is enabled on the currently running Hibernate `Session`.
This way, when fetching the `accounts` collections, Hibernate is going to apply the `@FilterJoinTable` clause filtering criteria to the associated collection entries. This way, when fetching the `accounts` collections, Hibernate is going to apply the `@FilterJoinTable` clause filtering criteria to the associated collection entries.
[[mapping-filter-collection-query-example]] [[mapping-filter-join-table-collection-query-example]]
.Traversing collections mapped with `@FilterJoinTable` .Traversing collections mapped with `@FilterJoinTable`
==== ====
[source, JAVA, indent=0] [source, JAVA, indent=0]

View File

@ -44,7 +44,7 @@ include::{sourcedir}/DynamicEntityTest.java[tag=mapping-model-dynamic-setting-ex
When you are going to save the following `Book` dynamic entity, When you are going to save the following `Book` dynamic entity,
Hibernate is going to generate the following SQL statement: Hibernate is going to generate the following SQL statement:
[[mapping-model-dynamic-setting-example]] [[mapping-model-dynamic-persist-example]]
.Persist dynamic entity .Persist dynamic entity
==== ====
[source,java] [source,java]

View File

@ -244,7 +244,7 @@ include::{sourcedir-mapping}/identifier/NaiveEqualsHashCodeEntityTest.java[tag=e
It turns out that this still breaks when adding transient instance of `Book` to a set as we saw in the last example: It turns out that this still breaks when adding transient instance of `Book` to a set as we saw in the last example:
[[entity-pojo-naive-equals-hashcode-example]] [[entity-pojo-naive-equals-hashcode-persist-example]]
.Auto-generated identifiers with Sets and naive equals/hashCode .Auto-generated identifiers with Sets and naive equals/hashCode
==== ====
[source,java] [source,java]

View File

@ -76,20 +76,20 @@ Hibernate also provides support for applications to use http://proxool.sourcefor
Transaction isolation of the Connections is managed by the `ConnectionProvider` itself. See <<database-connectionprovider-isolation>>. Transaction isolation of the Connections is managed by the `ConnectionProvider` itself. See <<database-connectionprovider-isolation>>.
[[database-connectionprovider-proxool-existing]] [[database-connectionprovider-proxool-existing]]
=== Using existing Proxool pools ==== Using existing Proxool pools
Controlled by the `hibernate.proxool.existing_pool` setting. Controlled by the `hibernate.proxool.existing_pool` setting.
If set to true, this ConnectionProvider will use an already existing Proxool pool by alias as indicated by the `hibernate.proxool.pool_alias` setting. If set to true, this ConnectionProvider will use an already existing Proxool pool by alias as indicated by the `hibernate.proxool.pool_alias` setting.
[[database-connectionprovider-proxool-jaxp]] [[database-connectionprovider-proxool-jaxp]]
=== Configuring Proxool via XML ==== Configuring Proxool via XML
The `hibernate.proxool.xml` setting names a Proxool configuration XML file to be loaded as a classpath resource and loaded by Proxool's JAXPConfigurator. The `hibernate.proxool.xml` setting names a Proxool configuration XML file to be loaded as a classpath resource and loaded by Proxool's JAXPConfigurator.
See http://proxool.sourceforge.net/configure.html[proxool configuration]. See http://proxool.sourceforge.net/configure.html[proxool configuration].
`hibernate.proxool.pool_alias` must be set to indicate which pool to use. `hibernate.proxool.pool_alias` must be set to indicate which pool to use.
[[database-connectionprovider-proxool-properties]] [[database-connectionprovider-proxool-properties]]
=== Configuring Proxool via Properties ==== Configuring Proxool via Properties
The `hibernate.proxool.properties` setting names a Proxool configuration properties file to be loaded as a classpath resource and loaded by Proxool's `PropertyConfigurator`. The `hibernate.proxool.properties` setting names a Proxool configuration properties file to be loaded as a classpath resource and loaded by Proxool's `PropertyConfigurator`.
See http://proxool.sourceforge.net/configure.html[proxool configuration]. See http://proxool.sourceforge.net/configure.html[proxool configuration].

View File

@ -148,7 +148,7 @@ include::{sourcedir}/AbstractMultiTenancyTest.java[tags=multitenacy-multitenacy-
---- ----
==== ====
[[multitenacy-hibernate-MultiTenantConnectionProvider]] [[multitenacy-hibernate-CurrentTenantIdentifierResolver]]
==== CurrentTenantIdentifierResolver ==== CurrentTenantIdentifierResolver
`org.hibernate.context.spi.CurrentTenantIdentifierResolver` is a contract for Hibernate to be able to resolve what the application considers the current tenant identifier. `org.hibernate.context.spi.CurrentTenantIdentifierResolver` is a contract for Hibernate to be able to resolve what the application considers the current tenant identifier.

View File

@ -164,7 +164,7 @@ In terms of execution, JPA `Query` offers 2 different methods for retrieving a r
* `Query#getResultList()` - executes the select query and returns back the list of results. * `Query#getResultList()` - executes the select query and returns back the list of results.
* `Query#getSingleResult()` - executes the select query and returns a single result. If there were more than one result an exception is thrown. * `Query#getSingleResult()` - executes the select query and returns a single result. If there were more than one result an exception is thrown.
[[hql-api-list-example]] [[jpql-api-list-example]]
.JPA `getResultList()` result .JPA `getResultList()` result
==== ====
[source, JAVA, indent=0] [source, JAVA, indent=0]
@ -173,7 +173,7 @@ include::{sourcedir}/HQLTest.java[tags=jpql-api-list-example]
---- ----
==== ====
[[hql-api-unique-result-example]] [[jpql-api-unique-result-example]]
.JPA `getSingleResult()` .JPA `getSingleResult()`
==== ====
[source, JAVA, indent=0] [source, JAVA, indent=0]

View File

@ -189,7 +189,7 @@ For backwards compatibility, if this configuration parameter is not set but a `o
=== Transactional patterns (and anti-patterns) === Transactional patterns (and anti-patterns)
[[session-per-operation]] [[session-per-operation]]
=== Session-per-operation anti-pattern ==== Session-per-operation anti-pattern
This is an anti-pattern of opening and closing a `Session` for each database call in a single thread. This is an anti-pattern of opening and closing a `Session` for each database call in a single thread.
It is also an anti-pattern in terms of database transactions. It is also an anti-pattern in terms of database transactions.
@ -208,7 +208,7 @@ It is as if your application called commit after each and every JDBC call.
==== ====
[[session-per-request]] [[session-per-request]]
=== Session-per-request pattern ==== Session-per-request pattern
This is the most common transaction pattern. This is the most common transaction pattern.
The term request here relates to the concept of a system that reacts to a series of requests from a client/user. The term request here relates to the concept of a system that reacts to a series of requests from a client/user.
@ -245,7 +245,7 @@ Release the underlying database cursor by calling `ScrollableResults#close()` or
==== ====
[[long-conversations]] [[long-conversations]]
=== Conversations ==== Conversations (application-level transactions)
The session-per-request pattern is not the only valid way of designing units of work. The session-per-request pattern is not the only valid way of designing units of work.
Many business processes require a whole series of interactions with the user that are interleaved with database accesses. Many business processes require a whole series of interactions with the user that are interleaved with database accesses.
@ -291,7 +291,7 @@ Automatic versioning is used to isolate concurrent modifications and the `Sessio
Session-per-request-with-detached-objects and session-per-conversation each have advantages and disadvantages. Session-per-request-with-detached-objects and session-per-conversation each have advantages and disadvantages.
[[session-per-application]] [[session-per-application]]
=== Session-per-application ==== Session-per-application anti-pattern
The _session-per-application_ is also considered an anti-pattern. The _session-per-application_ is also considered an anti-pattern.
The Hibernate `Session`, like the JPA `EntityManager`, is not a thread-safe object and it is intended to be confined to a single thread at once. The Hibernate `Session`, like the JPA `EntityManager`, is not a thread-safe object and it is intended to be confined to a single thread at once.

View File

@ -6,7 +6,7 @@
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later. ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
--> -->
<!--tag::events-default-listener-mapping-example[]--> <!-- tag::events-default-listener-mapping-example[] -->
<entity-mappings xmlns="http://xmlns.jcp.org/xml/ns/persistence/orm" <entity-mappings xmlns="http://xmlns.jcp.org/xml/ns/persistence/orm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence/orm xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence/orm
@ -24,4 +24,4 @@
</persistence-unit-defaults> </persistence-unit-defaults>
</persistence-unit-metadata> </persistence-unit-metadata>
</entity-mappings> </entity-mappings>
<!--end::events-default-listener-mapping-example[]--> <!-- end::events-default-listener-mapping-example[] -->

View File

@ -5,7 +5,7 @@
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later. ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
--> -->
<!--tag::mapping-model-dynamic-example[]--> <!-- tag::mapping-model-dynamic-example[] -->
<!DOCTYPE hibernate-mapping PUBLIC <!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
@ -20,4 +20,4 @@
</class> </class>
</hibernate-mapping> </hibernate-mapping>
<!--end::mapping-model-dynamic-example[]--> <!-- end::mapping-model-dynamic-example[] -->