I am looking for a template mechanism in Java that prohibits code execution in a template, only tags.
In an ideal world, I would look for the equivalent of Jinja2 (or the Django template engine ). Based on Django, the template tags will be used when I create it, but the user will not be able to create the template tag (by executing the code).
I would do it on Play! Framework .
Thank you for your help!
source
share