HHH-5340 Typo in tutorial at web site
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19829 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
505e7eeacb
commit
e7a5de444c
|
@ -928,11 +928,11 @@ class UserId implements Serializable {
|
|||
name="propertyName"
|
||||
class="ClassName"
|
||||
mapped="true|false"
|
||||
access="field|property|ClassName">
|
||||
node="element-name|."
|
||||
access="field|property|ClassName"
|
||||
node="element-name|.">
|
||||
|
||||
<key-property name="propertyName" type="typename" column="column_name"/>
|
||||
<key-many-to-one name="propertyName class="ClassName" column="column_name"/>
|
||||
<key-many-to-one name="propertyName" class="ClassName" column="column_name"/>
|
||||
......
|
||||
</composite-id></programlisting>
|
||||
|
||||
|
|
|
@ -518,7 +518,7 @@ hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect</programlisting>
|
|||
|
||||
<entry>Set this property to <literal>true</literal> if your JDBC
|
||||
driver returns correct row counts from
|
||||
<literal>executeBatch()</literal>. Iit is usually safe to turn
|
||||
<literal>executeBatch()</literal>. It is usually safe to turn
|
||||
this option on. Hibernate will then use batched DML for
|
||||
automatically versioned data. Defaults to
|
||||
<literal>false</literal>. <para> <emphasis
|
||||
|
@ -1598,7 +1598,7 @@ hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect</programlisting>
|
|||
one will be started and associated with that JTA transaction the first
|
||||
time you call <literal>sessionFactory.getCurrentSession()</literal>. The
|
||||
<literal>Session</literal>s retrieved via
|
||||
<literal>getCurrentSession()</literal> in the<literal>"jta"</literal>
|
||||
<literal>getCurrentSession()</literal> in the <literal>"jta"</literal>
|
||||
context are set to automatically flush before the transaction completes,
|
||||
close after the transaction completes, and aggressively release JDBC
|
||||
connections after each statement. This allows the
|
||||
|
|
Loading…
Reference in New Issue