From e7a5de444c86111db9738165ad21c92584387146 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Mon, 28 Jun 2010 09:47:17 +0000 Subject: [PATCH] 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 --- .../manual/src/main/docbook/en-US/content/basic_mapping.xml | 6 +++--- .../manual/src/main/docbook/en-US/content/configuration.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml b/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml index c5e77f4107..abab6316b6 100644 --- a/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml +++ b/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml @@ -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> diff --git a/documentation/manual/src/main/docbook/en-US/content/configuration.xml b/documentation/manual/src/main/docbook/en-US/content/configuration.xml index 9e79d07cf1..2518b0804f 100644 --- a/documentation/manual/src/main/docbook/en-US/content/configuration.xml +++ b/documentation/manual/src/main/docbook/en-US/content/configuration.xml @@ -518,7 +518,7 @@ hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect Set this property to true if your JDBC driver returns correct row counts from - executeBatch(). Iit is usually safe to turn + executeBatch(). It is usually safe to turn this option on. Hibernate will then use batched DML for automatically versioned data. Defaults to false. one will be started and associated with that JTA transaction the first time you call sessionFactory.getCurrentSession(). The Sessions retrieved via - getCurrentSession() in the"jta" + getCurrentSession() in the "jta" 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