|
Project Information
Members
|
What is Hapax?Hapax is a simple but powerful text templating library for Java. Hapax is suitable for constructing text output from Java code. The syntax is similar to Google's ctemplate library, and emphasizes the separation of logic from presentation. Hapax was designed to be easy to use and have minimal dependencies. Hapax does not depend on any existing web framework, and is suitable for use in servlets, scripting languages (Scala, Groovy, etc), and server-side applications. Examplepackage com.xfltr.hapax.examples;
import com.xfltr.hapax.Template;
import com.xfltr.hapax.TemplateDictionary;
import com.xfltr.hapax.TemplateException;
class HelloWorldExample {
public static void main(String[] args) throws TemplateException {
Template tmpl = Template.parse("Hello, {{WORLD:h}}");
TemplateDictionary dict = TemplateDictionary.create();
dict.put("WORLD", "Iapetus");
System.out.println(tmpl.renderToString(dict));
}
}Features
|