mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
6609: Portlet UI (doclist, myspaces, mytasks) updates following design review 6610: AR-1270 6611: debugging WCM-778. 6612: Improved API documentation. 6613: Added store lookup cache to EHCache config for default and extended cluster sample 6614: AWC-1531 and AWC-1146. Link objects that have targets which the user does not have access to are now filtered from the view. 6615: AR-1664: Bootstraping from full export fails if file names differs only with a space: my file, my file 6616: Fixed AR-1519: Possible duplicate entries when moving nodes between stores 6617: Removed deprecated aspects; Added emailed aspect to messages; Added OOo command line options 6618: Fix for AWC-1350 6619: Fix for AWC-1509 6620: AWC-1179: Searching for users in Invite User Wizard is slow with large number of users 6621: Changed shutdown logic to avoid classloader cleanup race. 6622: Fix for AWC-1533 (can't save office docs to Company Home) 6623: Fix for AR-1705 6624: Better fix for AWC-1256 (links generated by tinyMCE editor) 6625: Fixed AR-1713: Transformers that do nothing don't break full text indexing 6626: Fixed AWC-1438: Added explcit TXT to PDF converter that wraps the PDFBox TextToPDF class 6627: Portlet templates now handle missing description property on web form 6628: Fix WCM-788 6635: Make workflow available for users who cannot see company home Resolved conflicted state of 'root\projects\repository\source\java\org\alfresco\repo\workflow\jbpm\JBPMEngine.java' git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6748 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
589 lines
22 KiB
XML
589 lines
22 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<!--
|
|
Configuration of in-transaction caches along with the shared (cross-transaction) caches.
|
|
The in-transaction caches do not share the same configuration as the shared caches.
|
|
This is because the shared caches can support replication (EHCache 1.2), while the
|
|
in-transaction caches must not use these features.
|
|
-->
|
|
<beans>
|
|
|
|
<!-- ==================================================== -->
|
|
<!-- EH Cache Manager to produce in-transaction EH Caches -->
|
|
<!-- Do not override or cluster -->
|
|
<!-- ==================================================== -->
|
|
|
|
<bean name="transactionalEHCacheManager" class="org.alfresco.repo.cache.EhCacheManagerFactoryBean" >
|
|
<property name="configLocation">
|
|
<value>classpath:alfresco/ehcache-transactional.xml</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ============================================ -->
|
|
<!-- EH Cache Manager to produce shared EH Caches -->
|
|
<!-- ============================================ -->
|
|
|
|
<bean name="internalEHCacheManager" class="org.alfresco.repo.cache.InternalEhCacheManagerFactoryBean" />
|
|
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Parent Associations lookup for nodes -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Parent Associations -->
|
|
|
|
<bean name="parentAssocsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.parentAssocsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Parent Associations -->
|
|
|
|
<bean name="parentAssocsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="parentAssocsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.parentAssocsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>1000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Authority container look up for users -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for User Authorities -->
|
|
|
|
<bean name="userToAuthoritySharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.userToAuthorityCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for User Authorities -->
|
|
|
|
<bean name="userToAuthorityCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="userToAuthoritySharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.userToAuthorityTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>100</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Permissions access cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Permissions -->
|
|
|
|
<bean name="permissionsAccessSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.permissionsAccessCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Permissions -->
|
|
|
|
<bean name="permissionsAccessCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="permissionsAccessSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<!-- Eh cache area -->
|
|
<property name="name">
|
|
<value>org.alfresco.permissionsAccessTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Node owner cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Node Ownership -->
|
|
|
|
<bean name="nodeOwnerSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.nodeOwnerCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Node Ownership -->
|
|
|
|
<bean name="nodeOwnerCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="nodeOwnerSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.nodeOwnerTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Person username to NodeRef cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for Person -->
|
|
|
|
<bean name="personSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.personCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for Person -->
|
|
|
|
<bean name="personCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="personSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<!-- Eh cache area -->
|
|
<property name="name">
|
|
<value>org.alfresco.personTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>1000</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Authentication Ticket Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Tickets -->
|
|
|
|
<bean name="ticketsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.ticketsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Tickets -->
|
|
|
|
<bean name="ticketsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="ticketsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.ticketsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- AVM Lookup Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for AVM lookups -->
|
|
|
|
<bean name="avmLookupSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.avm.lookupSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for AVM lookups -->
|
|
|
|
<bean name="avmLookupCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="avmLookupSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.avm.lookupTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>100</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- AVM Store lookup cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for AVM store lookups -->
|
|
|
|
<bean name="avmStoreLookupSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.avm.storeLookupSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for AVM store lookups -->
|
|
|
|
<bean name="avmStoreLookupCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="avmStoreLookupSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.avm.storeLookupTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>200</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- WebServices Query Session Cache -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for WebService query sessions -->
|
|
|
|
<bean name="webServicesQuerySessionSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean">
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager"/>
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.repo.webservices.querySessionSharedCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Transactional cache for WebService query sessions -->
|
|
|
|
<bean name="webServicesQuerySessionCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="webServicesQuerySessionSharedCache"/>
|
|
</property>
|
|
<property name="cacheManager">
|
|
<ref bean="transactionalEHCacheManager"/>
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.repo.webservices.querySessionTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>50</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Messages Caches -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory ResourceBundleBaseNames -->
|
|
|
|
<bean name="resourceBundleBaseNamesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.resourceBundleBaseNamesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory ResourceBundleBaseNames -->
|
|
|
|
<bean name="resourceBundleBaseNamesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="resourceBundleBaseNamesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.resourceBundleBaseNamesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory LoadedResourceBundles -->
|
|
|
|
<bean name="loadedResourceBundlesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.loadedResourceBundlesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory LoadedResourceBundles -->
|
|
|
|
<bean name="loadedResourceBundlesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="loadedResourceBundlesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.loadedResourceBundlesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Messages -->
|
|
|
|
<bean name="messagesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.messagesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Messages -->
|
|
|
|
<bean name="messagesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="messagesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.messagesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
|
|
<!-- ===================================== -->
|
|
<!-- Dictionary / Namespace Caches -->
|
|
<!-- ===================================== -->
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory UriToModels -->
|
|
|
|
<bean name="uriToModelsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.uriToModelsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory UriToModels -->
|
|
|
|
<bean name="uriToModelsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="uriToModelsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.uriToModelsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory CompiledModels -->
|
|
|
|
<bean name="compiledModelsSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.compiledModelsCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory CompiledModels -->
|
|
|
|
<bean name="compiledModelsCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="compiledModelsSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.compiledModelsTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Namespace Uris -->
|
|
|
|
<bean name="urisSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.urisCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Namespace Uris -->
|
|
|
|
<bean name="urisCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="urisSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.urisTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The cross-transaction shared cache for In-Memory Namespace Prefixes -->
|
|
|
|
<bean name="prefixesSharedCache" class="org.alfresco.repo.cache.EhCacheAdapter">
|
|
<property name="cache">
|
|
<bean class="org.springframework.cache.ehcache.EhCacheFactoryBean" >
|
|
<property name="cacheManager">
|
|
<ref bean="internalEHCacheManager" />
|
|
</property>
|
|
<property name="cacheName">
|
|
<value>org.alfresco.cache.prefixesCache</value>
|
|
</property>
|
|
</bean>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- The transactional cache for In-Memory Namespace Prefixes -->
|
|
|
|
<bean name="prefixesCache" class="org.alfresco.repo.cache.TransactionalCache">
|
|
<property name="sharedCache">
|
|
<ref bean="prefixesSharedCache" />
|
|
</property>
|
|
<property name="cacheManager" >
|
|
<ref bean="transactionalEHCacheManager" />
|
|
</property>
|
|
<property name="name">
|
|
<value>org.alfresco.prefixesTransactionalCache</value>
|
|
</property>
|
|
<property name="maxCacheSize">
|
|
<value>10</value>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |