[seam-commits] Seam SVN: r8628 - trunk.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu Aug 7 16:21:32 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-08-07 16:21:32 -0400 (Thu, 07 Aug 2008)
New Revision: 8628
Modified:
trunk/seam21migration.txt
Log:
Document MEII is disabled by default and how to enable
Modified: trunk/seam21migration.txt
===================================================================
--- trunk/seam21migration.txt 2008-08-07 20:19:21 UTC (rev 8627)
+++ trunk/seam21migration.txt 2008-08-07 20:21:32 UTC (rev 8628)
@@ -90,3 +90,32 @@
references to pdf:document-store in components.xml should be replaced with document:document-store.
Similary, if you are currently referencing org.jboss.seam.pdf.DocumentStoreServlet in your web.xml,
you should now use org.jboss.seam.document.DocumentStoreServlet.
+
+
+Clustering
+----------
+
+Seam's ManagedEntityIdentityInterceptor is now disabled by default. If you need
+the ManagedEntityIdentityInterceptor for clustered failover of conversations,
+you can enable it components.xml:
+
+<core:init>
+ <core:interceptors>
+ <value>org.jboss.seam.core.SynchronizationInterceptor</value>
+ <value>org.jboss.seam.async.AsynchronousInterceptor</value>
+ <value>org.jboss.seam.ejb.RemoveInterceptor</value>
+ <value>org.jboss.seam.persistence.HibernateSessionProxyInterceptor</value>
+ <value>org.jboss.seam.persistence.EntityManagerProxyInterceptor</value>
+ <value>org.jboss.seam.core.MethodContextInterceptor</value>
+ <value>org.jboss.seam.core.EventInterceptor</value>
+ <value>org.jboss.seam.core.ConversationalInterceptor</value>
+ <value>org.jboss.seam.bpm.BusinessProcessInterceptor</value>
+ <value>org.jboss.seam.core.ConversationInterceptor</value>
+ <value>org.jboss.seam.core.BijectionInterceptor</value>
+ <value>org.jboss.seam.transaction.RollbackInterceptor</value>
+ <value>org.jboss.seam.transaction.TransactionInterceptor</value>
+ <value>org.jboss.seam.webservice.WSSecurityInterceptor</value>
+ <value>org.jboss.seam.security.SecurityInterceptor</value>
+ <value>org.jboss.seam.persistence.ManagedEntityIdentityInterceptor</value>
+ </core:interceptors>
+</core:init>
More information about the seam-commits
mailing list