mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@34805 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
19 lines
973 B
XML
19 lines
973 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.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">
|
|
|
|
<bean id="testBean2" class="java.lang.String">
|
|
<constructor-arg value="Value from dummy2-context.xml"/>
|
|
</bean>
|
|
|
|
<bean id="testBean1and2" class="java.lang.String">
|
|
<constructor-arg value="Value from dummy2-context.xml"/>
|
|
</bean>
|
|
</beans>
|