This is perfectly explained in the docs. Therefore, please stop saying that this is not so.
http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html
How to use tiles in spring: 10.5 Allow viewing (link + # spring -mvc-config- spring -view-resolution)
How to use Ajax with tiles in spring: 11.5: Processing an Ajax request (link + # spring -js-ajax)
Copy the code from these links and you will get something like this:
Web Stream Configuration for Using Tiles:
<webflow:flow-builder-services id="flowBuilderServices" view-factory-creator="mvcViewFactoryCreator" /> <bean id="mvcViewFactoryCreator" class="org.springframework.webflow.mvc.builder.MvcViewFactoryCreator"> <property name="viewResolvers" ref="tilesViewResolver" /> </bean>
Tile configuration:
<bean class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"> <property name="definitions"> <list> <value>/WEB-INF/views/layouts/page.xml</value> <value>/WEB-INF/views/layouts/table.xml</value> <value>/WEB-INF/views/globalViews.xml</value> <value>/WEB-INF/views/userViews.xml</value> </list> </property> </bean>
Configuration for tiles + Ajax:
<bean id="tilesViewResolver" class="org.springframework.js.ajax.AjaxUrlBasedViewResolver"> <property name="viewClass" value="org.springframework.webflow.mvc.view.FlowAjaxTilesView" /> </bean>
Triqui
source share