[seam-commits] Seam SVN: r9188 - trunk.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sat Oct 4 08:32:59 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-10-04 08:32:59 -0400 (Sat, 04 Oct 2008)
New Revision: 9188

Modified:
   trunk/seam21migration.txt
Log:
Add a note on cache changes

Modified: trunk/seam21migration.txt
===================================================================
--- trunk/seam21migration.txt	2008-10-04 00:33:27 UTC (rev 9187)
+++ trunk/seam21migration.txt	2008-10-04 12:32:59 UTC (rev 9188)
@@ -140,4 +140,26 @@
 --------
 
 The org.jboss.seam.postInitialization event is no longer called on redeploy,
-instead org.jboss.seam.postReInitialization is called.
\ No newline at end of file
+instead org.jboss.seam.postReInitialization is called.
+
+
+Cache Support
+-------------
+
+Cache support has be rewritten to support JBoss Cache, JBoss POJO Cache, JBoss
+Cache 2 and EHCache. If you are running on JBoss AS 4.2.x JBoss Cache 1.x will 
+be used or on JBoss 5.x JBoss Cache 2 will be installed. You can find more about
+how to configure the cache provider in the reference manual.
+
+The use <s:cache /> is unchanged, but you can no longer inject the pojoCache
+component. Instead you should configure JBoss POJO cache as your cache provider 
+in components.xml:
+
+<cache:jboss-pojo-cache-provider />
+
+and inject it using
+
+ at In CacheProvider<PojoCache> cacheProvider;
+
+The CacheProvider provides a Map like interface, and the getDelegate() method
+can be used to retrieve the underling cache. 
\ No newline at end of file




More information about the seam-commits mailing list