Hi !
Is it possible to do the following or must each sub-context be explicitly added to the constructor arg list ?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans 
			PUBLIC "-//SPRING//DTD BEAN//EN" 
			"http&#58;//www.springframework.org/dtd/spring-beans.dtd">
<beans >

	<!-- define an aggregate application context -->
	<bean id="my.layer.context" class="org.springframework.context.support.ClassPathXmlApplicationContext">
		<constructor-arg>
			<list>
				<value>a/b/c/**/applicationContext.xml</value>
			</list>
		</constructor-arg>
	</bean>
</beans>
Tests have proved unsuccessful (i.e. it cannot be done) however I am just confirming with the community.

Hopefully,