mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14394 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
<!--
|
|
This file is not included in the application context by default.
|
|
If you include this file, please ensure that you review the sample
|
|
beans contained here.
|
|
-->
|
|
|
|
<bean id="localDriveContentStore" class="org.alfresco.repo.content.filestore.FileContentStore">
|
|
<constructor-arg>
|
|
<value>/var/alfresco/contentstore</value>
|
|
</constructor-arg>
|
|
</bean>
|
|
<bean id="networkContentStore" class="org.alfresco.repo.content.filestore.FileContentStore">
|
|
<constructor-arg>
|
|
<value>/share/alfresco/contentstore</value>
|
|
</constructor-arg>
|
|
</bean>
|
|
<bean id="fileContentStore" class="org.alfresco.repo.content.replication.ReplicatingContentStore" >
|
|
<property name="primaryStore">
|
|
<ref bean="localDriveContentStore" />
|
|
</property>
|
|
<property name="secondaryStores">
|
|
<list>
|
|
<ref bean="networkContentStore" />
|
|
</list>
|
|
</property>
|
|
<property name="inbound">
|
|
<value>true</value>
|
|
</property>
|
|
<property name="outbound">
|
|
<value>true</value>
|
|
</property>
|
|
<property name="retryingTransactionHelper">
|
|
<ref bean="retryingTransactionHelper"/>
|
|
</property>
|
|
</bean>
|
|
</beans>
|