forked from zstackio/zstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzstackSimulator.xml
executable file
·37 lines (34 loc) · 1.96 KB
/
zstackSimulator.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
default-init-method="init" default-destroy-method="destory">
<context:annotation-config />
<context:spring-configured />
<aop:aspectj-autoproxy proxy-target-class="true"/>
<tx:annotation-driven transaction-manager="transactionManager" mode="aspectj" />
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
<property name="locations">
<list>
<value>classpath:zstack.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true" />
</bean>
<import resource="zstack.xml" />
<import resource="simulatorSpringConfigXml/ApplianceVmSimulator.xml" />
<import resource="simulatorSpringConfigXml/ConsoleSimulator.xml" />
<import resource="simulatorSpringConfigXml/KVMSimulator.xml" />
<import resource="simulatorSpringConfigXml/NfsPrimaryStorageSimulator.xml" />
<import resource="simulatorSpringConfigXml/SftpBackupStorageSimulator.xml" />
<import resource="simulatorSpringConfigXml/VirtualRouterSimulator.xml" />
</beans>