FreeMarker

From Wikipedia, the free encyclopedia
Apache FreeMarker
Developer(s)Jonathan Revusky, Attila Szegedi, Dániel Dékány, and others
Initial release2000
Stable release
2.3.32 / January 14, 2023; 14 months ago (2023-01-14)
Repositorygithub.com/apache/freemarker
Written inJava
Operating systemCross-platform
TypeTemplate Engine
LicenseApache License 2.0
Websitefreemarker.apache.org

Apache FreeMarker is a free Java-based template engine, originally focusing on dynamic web page generation with MVC software architecture. It can now generate text based on templates and changing data.[1] It has no dependency on servlets or HTTP or HTML.[2]

It is often used for generating source code, configuration files or e-mails.

History[edit]

FreeMarker had a somewhat hectic history until about 2004, caused by paradigm shifts and other significant changes on multiple occasions. FreeMarker 1 (now known as FreeMarker Classic, a separate project) was originally written by Benjamin Geer and Mike Bayer. From 2002, the new project lead was Jonathan Revusky, who released FreeMarker 2, which started a sequence of several substantial changes. The main goal of the changes was to make the template language more strict, i.e., to detect as many of the typos and other typical mistakes as possible. Also, automatic object wrapping was introduced, along with gradual advancement of the type system of the template language. The language has gained many power-user features, such as more powerful macro programming capabilities and namespaces. The language has reached a quite settled state with version 2.3, released in 2004 Q3. As of 2022, the product has remained backward compatible. No significant backward incompatible changes are expected in the FreeMarker 2 series in the future.

In late 2015, FreeMarker was granted to the Apache Software Foundation, where it has entered the Apache Incubator, and in 2018-03-21 it has become a fully accepted Apache project.

Example[edit]

The following template:

<html>
<body>
<p>Hello ${name}! You have the following messages:
<#list messages as m>
  <p><b>${m.from}:</b> ${m.body}</p>
</#list>
</p>
</body>
</html>

processed by FreeMarker will produce something like:

<html>
<body>
<p>Hello Joe! You have the following messages:
  <p><b>Tim:</b> Please don't forget to bring the conference papers!</p>
  <p><b>Cindy:</b> Can you give me a visit this afternoon?</p>
  <p><b>Richard:</b> Don't forget the papers this time!</p>
</p>
</body>
</html>

Variables like "name" and "messages" are coming from outside the template, and thus the template author has to deal with the presentation issues only. The template remains the same regardless if these variables are coming from a database or from a cookie or calculated in whatever other ways. Also the exact Java API (and hence the class) of the values can be hidden in FreeMarker using a technique called object wrapping. For example, "messages" seems to be a list or array of JavaBeans that have "from" and "body" properties, but it might as well be something very different, and the template is not affected (as long as a proper object wrapper is used).

See also[edit]

References[edit]

  1. ^ Cardoza, Christina (2017-03-27). "Apache Calcite, FreeMarker, Gora, Phoenix, and Solr updated". SD Times. Retrieved 2024-02-05.
  2. ^ Mittapalli, Jishnu Saurav; Arthur, Menaka Pushpa (2021). "Survey on Template Engines in Java". ITM Web of Conferences. 37. EDP Sciences: 01007. doi:10.1051/itmconf/20213701007. ISSN 2271-2097.

External links[edit]