Which Spring MVC compatible templating engine will allow me to achieve Python's Jinja2 like templates?
Example:
A template file which all views extend with their own content
main.jinja2:
<html>
<head>
<title>{% block title %}{% endblock %}</title>
...
Each view only has to customise some of the template's defined blocks
a_view.jinja2:
{% extends "main.jinja2" %}
{% block title %}A View Page Title{% endblock %}
I do not require syntax compatibility, only this concept of extending a base template.
One possible solution is to invert the JSP templating approach.
Create a main.jsp, all controllers will render main.jsp for their view:
<html>
<head>
<title><jsp:include page="titles/${title_inc}.jsp" /></title>
...
From the controller:
@RequestMapping("/")
public String welcome( ModelMap args ) {
args.addAttribute("title_inc", "home");
args.addAttribute("body_inc", "home");
args.addAttribute("message", "A Message!");
return "main";
}
I am hopeful it would be possible to refine this approach, i would prefer to infer the correct name of the title / body includes from some session attribute rather than specify them in the model map for each controller.
I have reservations about performance. I do not know if the main.jsp is cached (for performance reasons), but this approach effectively negates most benefits of caching the results of rendering main.jsp. If caching does happen this approach may not even work if there is no way to invalidate the cached copy.
Still seeking a better approach.