In an application we are using Velocity to merge placeholders in templates. So ${firstname} is merged to a users first name because we add it before merging in a VelocityContext Hashmap.
Code:
public static String evaluateTemplate(final VelocityContext context, final String template){
try {
velocityEngine.init();
StringWriter writer = new StringWriter();
velocityEngine.evaluate(context, writer, "", template);
return writer.toString();
} catch (Exception e) {
...
}
}
This is a very simple example and always adding first name, even if it isn't used in the template, to the VelocityContext isn't an expensive operation because user property fields (getters from a Hibernate entity) are most of the time needed when evaluating a template (template can be personal pages or emails). But in some special cases we need some more 'expensive' data. For example data from other applications get by web services. And even if there is no placeholder in the template that request the information it is loaded and put every time to the context hashmap.
So my question is , is there a alternative as template engine (I also know 'Freemarker' and 'String template') that load needed content when it is necessary? Some kind of lazy loading template engine with less overhead