Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Java-SCA-1.5.1
-
None
Description
Currently Tuscany allows the user to declare multiple application context for their SCA Spring component using the following bean definition in the top level application context identified from the @location attribute of the <implementation.spring/> element found in the SCA component definition of the SCA composite file.
<bean class=" org.springframework.context.support.ClassPathXmlApplicationContext">
<constructor-arg>
<list>
<value>context1.xml</value>
<value>context2.xml</value>
<value>context3.xml</value>
</list>
</constructor-arg>
</bean>
Need a on/off switch for the multiple application support in implementation.spring.