[seam-commits] Seam SVN: r7556 - trunk/doc/reference/en/modules.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Mar 13 06:54:42 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-03-13 06:54:42 -0400 (Thu, 13 Mar 2008)
New Revision: 7556

Modified:
   trunk/doc/reference/en/modules/persistence.xml
Log:
JBSEAM-2733

Modified: trunk/doc/reference/en/modules/persistence.xml
===================================================================
--- trunk/doc/reference/en/modules/persistence.xml	2008-03-13 10:42:07 UTC (rev 7555)
+++ trunk/doc/reference/en/modules/persistence.xml	2008-03-13 10:54:42 UTC (rev 7556)
@@ -145,8 +145,9 @@
     		</listitem>
     		<listitem>
     			<para>
-                    use two transactions per request; the first spans the beginning of the update model
-                    values phase until the end of the invoke application phase; the second spans the
+                    use two transactions per request; the first spans the beginning of the restore view
+                    phase (some transaction managers begin the transaction later at the beginning of the
+                    apply request vaues phase) until the end of the invoke application phase; the second spans the
                     render response phase
     			</para>
     		</listitem>
@@ -205,21 +206,25 @@
     			   <para>
     				   JPA RESOURCE_LOCAL transactions with the
     				   <literal>javax.persistence.EntityTransaction</literal>
-    				   interface.
+    				   interface. <literal>EntityTransaction</literal> begins the transaction at the beginning
+                       of the apply request values phase.
     				</para>
     			</listitem>
     			<listitem>
     			   <para>
     				   Hibernate managed transactions with the
     				   <literal>org.hibernate.Transaction</literal>
-    				   interface.
+    				   interface. <literal>HibernateTransaction</literal> begins the transaction at the beginning
+                       of the apply request values phase.
     			   </para>
     			</listitem>
     			<listitem>
     			   <para>
     				   Spring managed transactions with the
     				   <literal>org.springframework.transaction.PlatformTransactionManager</literal>
-    				   interface.
+    				   interface. The Spring <literal>PlatformTransactionManagement</literal> manager may begin the
+                       transaction at the beginning of the apply request values phase if the 
+                       <literal>userConversationContext</literal> attribute is set.
     			   </para>
     			</listitem>
                 <listitem>




More information about the seam-commits mailing list