Is it possible to use Tiles and freemarker pages together with Spring MVC? I tried doing this and no luck. I want to use freemarker to create the pages and use tiles to tie them together.
My config is
I want to migrate my project from just freemarker to tiles. Is this possible? Any help would be appreciated.Code:<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"> <property name="definitions"> <list> <value>/WEB-INF/tiles.xml</value> </list> </property> </bean> <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView"/> </bean>
Cheers


Reply With Quote