Results 1 to 3 of 3

Thread: Tiles and Freemarker

  1. #1
    Join Date
    Aug 2006
    Posts
    236

    Default Tiles and Freemarker

    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

    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>
    I want to migrate my project from just freemarker to tiles. Is this possible? Any help would be appreciated.

    Cheers

  2. #2

    Default

    I just happened to run across this link after reading your post. Hope it helps.

    http://java-ua.blogspot.com/2009/01/...r-tiles-2.html

  3. #3
    Join Date
    Aug 2006
    Posts
    236

    Default

    Sweet! Thanks sooo much! I owe you one.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •