===============================
import org.stringtemplate.v4.ST;
import org.stringtemplate.v4.STGroup;
import org.stringtemplate.v4.STGroupFile;
public class StringTemplateExample {
public static void main(String[] args) {
STGroup group = new STGroupFile("template.stg");
ST template = group.getInstanceOf("greeting");
template.add("name", "Alice");
String result = template.render();
System.out.println(result);
}
}