There is no such things called best, just proper solution to certain problem. I'd like to introduce my work: Rythm template engine, which is a lightweight and super fast template engine in Java using the clean Razor like syntax. Rythm has rich features and supports page layout/inheritance, customized tags (either in template or java class), dynamic reload at dev mode and much more.
The API is simple:
render with inline string:
String output = Rythm.render("@args String who;hello @who!", "world");
render with template file:
String output = Rythm.render("hello.txt", "world");
EDIT:
The latest version (1.0.0-20120703) provides an new feature called String interpolation mode which allows you to omit the render argument declaration for simple template, hence now you can do something like:
String output = Rythm.render("hello @who!", "world");
This simplicity makes Rythm a good replacement for String.format() in many cases. And did I mention that it's 2x faster than String.format()?
Updates 16 Apr 2013
Checkout the interactive Rythm Fiddle site to get an idea of the Rythm syntax.