mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Fix AR-431, AR-432.
Modified the Repository bootstrap mechanism so it's performed after all other initialisation and the order of bootstrap is explicit. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2414 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -20,9 +20,7 @@
|
||||
<!-- File Server Configuration -->
|
||||
<bean id="fileServerConfigurationBase"
|
||||
abstract="true"
|
||||
init-method="init"
|
||||
destroy-method="closeConfiguration"
|
||||
depends-on="importerBootstrap">
|
||||
destroy-method="closeConfiguration">
|
||||
<property name="authenticationManager">
|
||||
<ref bean="authenticationManager"/>
|
||||
</property>
|
||||
@@ -46,28 +44,6 @@
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="fileServerConfiguration"
|
||||
class="org.alfresco.filesys.server.config.ServerConfiguration"
|
||||
parent="fileServerConfigurationBase" >
|
||||
<property name="configService">
|
||||
<ref bean="fileServersConfigService"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- CIFS Server -->
|
||||
<bean id="cifsServer" class="org.alfresco.filesys.CIFSServer" init-method="startServer" destroy-method="stopServer" depends-on="importerBootstrap">
|
||||
<constructor-arg>
|
||||
<ref bean="fileServerConfiguration"/>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
<!-- FTP Server -->
|
||||
<bean id="ftpServer" class="org.alfresco.filesys.FTPServer" init-method="startServer" destroy-method="stopServer" depends-on="importerBootstrap">
|
||||
<constructor-arg>
|
||||
<ref bean="fileServerConfiguration"/>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
<!-- Filesystem Interface -->
|
||||
<bean id="contentDiskDriver" class="org.alfresco.filesys.smb.server.repo.ContentDiskDriver" >
|
||||
<constructor-arg>
|
||||
|
Reference in New Issue
Block a user