Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Template engine for Google App Engine [closed]

Can you recommend a template engine for GAE? I like Wicket, but it carries a lot of server-side state, which is something that is not very compatible with the GAE approach.

Is FreeMarker supported on GAE?

EDIT

My primary requirements for the template engine are:

  • Ease of development (separation of logic and design)
  • Intuitive syntax, since users may customize some templates
  • Fast, lightweight
like image 450
Tony the Pony Avatar asked Nov 09 '10 18:11

Tony the Pony


2 Answers

Check out the Play framework. It has support for GAE and is completely stateless server-side.

like image 84
Amy B Avatar answered Nov 15 '22 20:11

Amy B


I am using FreeMarker on GAE quite successfully. I have it handling all of the html files with welcome-file directory handling working fine. For more information, see this other stackoverflow question. I have my web.xml file and other details there.

like image 34
Gray Avatar answered Nov 15 '22 18:11

Gray