tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Template Engines > Freemarker > Include

Include 

FreeMarker is a java based template engine for complex template processing. This requires the library freemarker-2.3.16.jar to be in classpath. The following example shows using include directive. It includes another template into current template for processing.

File Name  :  
/FREEMARKER001/config/include.ftl 
1<table>
2<#include "tablebody.ftl">
3<table>

File Name  :  
/FREEMARKER001/config/tablebody.ftl 
1<#list 1..4 as a>
2  <tr><td>${a}</td><td>${name}</td></tr>
3</#list>

File Name  :  
com/bethecoder/tutorials/freemarker/tests/IncludeTest.java 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
   
package com.bethecoder.tutorials.freemarker.tests;

import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.HashMap;
import java.util.Map;

import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;

public class IncludeTest {

  /**
   @param args
   @throws IOException 
   @throws TemplateException 
   */
  public static void main(String[] argsthrows IOException, TemplateException  {

    //Get template from classpath
    Configuration cfg = new Configuration();
    cfg.setClassForTemplateLoading(IncludeTest.class, "/");
    Template template = cfg.getTemplate("include.ftl");
    
    //Prepare data model
    Map<String, Object> dataModel = new HashMap<String, Object>();
    dataModel.put("name""Sriram");
    
    //Merge template and data
    OutputStreamWriter output = new OutputStreamWriter(System.out);
    template.process(dataModel, output);
  }
}
   

It gives the following output,
File Name  :  OUTPUT
1<table>
2  <tr><td>1</td><td>Sriram</td></tr>
3  <tr><td>2</td><td>Sriram</td></tr>
4  <tr><td>3</td><td>Sriram</td></tr>
5  <tr><td>4</td><td>Sriram</td></tr>
6<table>



 
  


  
bl  br