I have a Spring webapp that uses Apache Tiles to piece together various views.
I currently define a TilesConfigurer in my spring-servlet.xml like
<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/tiles/${someProperty}/tilesA.xml</value>
<value>/WEB-INF/tiles/${someProperty}/tilesB.xml</value>
<value>/WEB-INF/tiles/${someProperty}/tilesC.xml</value>
</list>
</property>
</bean>
What I would like to do is to define two tilesConfigurer beans and be able to swap out which one is being used programatically at runtime.
I was not able to find where this TilesConfigurer is used and if it would be possible to swap out multiple instances.