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

Include 

Apache Velocity is a free, simple and powerful template engine written in 100% pure Java. This requires the libraries velocity-1.7.jar, oro-2.0.8.jar, commons-lang-2.4.jar, commons-collections-3.2.1.jar, commons-logging-1.1.jar, log4j-1.2.12.jar to be in classpath. The following example shows using #include directive. It includes the contents of given file in the current template.

File Name  :  
/VELOCITY001/config/include.vm 
1#set ($data = "data.txt")
2## Load list of files into this template
3#include( $data, "table.txt", $data )

File Name  :  
/VELOCITY001/config/data.txt 
1<p><b>BE THE CODER</b></p>

File Name  :  
/VELOCITY001/config/table.txt 
1<table>
2<tr><td>ONE</td></tr>
3<tr><td>TWO</td></tr>
4<tr><td>THREE</td></tr>
5<tr><td>FOUR</td></tr>
6</table>

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

import java.io.StringWriter;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.VelocityEngine;
import org.apache.velocity.runtime.RuntimeConstants;
import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader;

public class IncludeTest {

  /**
   @param args
   */
  public static void main(String[] args)  {

    /**
     * Initialize engine and get template
     */
    VelocityEngine ve = new VelocityEngine();
    ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath")
    ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());
        Template template = ve.getTemplate("include.vm");
        
        /**
         * Prepare context data
         */
        VelocityContext context = new VelocityContext();

        /**
         * Merge data and template
         */
        StringWriter swOut = new StringWriter();
        template.merge(context, swOut);
        
        System.out.println(swOut);
  }
}
   

It gives the following output,
File Name  :  OUTPUT
01<p><b>BE THE CODER</b></p>
02 
03<table>
04<tr><td>ONE</td></tr>
05<tr><td>TWO</td></tr>
06<tr><td>THREE</td></tr>
07<tr><td>FOUR</td></tr>
08</table>
09 
10<p><b>BE THE CODER</b></p>



 
  


  
bl  br