HHH-5000 correct duplicate words in document
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18981 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
b1c527084e
commit
93a01fed25
|
@ -362,7 +362,7 @@
|
|||
|
||||
<para>
|
||||
The first two implementations provide a "one session - one database transaction" programming
|
||||
model. This is also also known and used as <emphasis>session-per-request</emphasis>. The beginning
|
||||
model. This is also known and used as <emphasis>session-per-request</emphasis>. The beginning
|
||||
and end of a Hibernate session is defined by the duration of a database transaction.
|
||||
If you use programmatic transaction demarcation in plain JSE without JTA, you are advised to
|
||||
use the Hibernate <literal>Transaction</literal> API to hide the underlying transaction system
|
||||
|
|
|
@ -1156,7 +1156,7 @@ hibernate.cache.use_structured_entries true]]></programlisting>
|
|||
<important>
|
||||
<para>
|
||||
If you configure your underlying cache implementation to use expiry or
|
||||
timeouts is is very important that the cache timeout of the underlying
|
||||
timeouts is very important that the cache timeout of the underlying
|
||||
cache region for the UpdateTimestampsCache be set to a higher value than
|
||||
the timeouts of any of the query caches. In fact, we recommend that the
|
||||
the UpdateTimestampsCache region not be configured for expiry at all. Note,
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
<para>
|
||||
SQL functions can be referenced in many ways by users. However, not all databases
|
||||
support the same set of functions. Hibernate, provides a means of mapping a
|
||||
<emphasis>logical</emphasis> function name to a a delegate which knows how to render
|
||||
<emphasis>logical</emphasis> function name to a delegate which knows how to render
|
||||
that particular function, perhaps even using a totally different physical function call.
|
||||
<important>
|
||||
<para>
|
||||
|
|
|
@ -363,7 +363,7 @@ List loggedCats = sess.createSQLQuery(sql)
|
|||
</row>
|
||||
|
||||
<row>
|
||||
<entry>All properties of the the collection</entry>
|
||||
<entry>All properties of the collection</entry>
|
||||
|
||||
<entry><literal>{[aliasname].*}</literal></entry>
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
<title>Making objects persistent</title>
|
||||
|
||||
<para>
|
||||
Newly instantiated instances of a a persistent class are considered
|
||||
Newly instantiated instances of a persistent class are considered
|
||||
<emphasis>transient</emphasis> by Hibernate. We can make a transient
|
||||
instance <emphasis>persistent</emphasis> by associating it with a
|
||||
session:
|
||||
|
|
Loading…
Reference in New Issue