- Impact
- 61
FreeMarker is a Java template engine to generate pages from templates. This is to get a first taste of FreeMarker.
The first example starts with a template page containing:
That produces a page with the text:
All the FreeMarker work is done in these 3 Java lines:
http://bredelet.com/Denis/FreeMarker first steps.html
Hope that is useful to someone!
The first example starts with a template page containing:
${pet} does ${number} little hops![]()
That produces a page with the text:
Bunny does 6 little hops![]()
All the FreeMarker work is done in these 3 Java lines:
Code:
Configuration cfg = new Configuration();
Template tpl = cfg.getTemplate(template);
tpl.process(datamodel, output);
http://bredelet.com/Denis/FreeMarker first steps.html
Hope that is useful to someone!






