Hello,
I wanted to know if anyone can provide recommendations on a good well
supported and maintained Java template engine.
I found the following but am hoping someone more seasoned can provide
recommendations. Thanks for any help.
http://java-source.net/open-source/template-engines
Arne Vajhøj - 19 May 2007 02:33 GMT
> I wanted to know if anyone can provide recommendations on a good well
> supported and maintained Java template engine.
[quoted text clipped - 3 lines]
>
> http://java-source.net/open-source/template-engines
Velocity is well-known and widely used.
Arne
Kai Schwebke - 19 May 2007 06:36 GMT
DJH schrieb:
> I wanted to know if anyone can provide recommendations on a good well
> supported and maintained Java template engine.
Using just core JSP and JSTL with custom tags you may not need
a third party template engine at all. Most of the third party
engines where started in a time when JSP (without EL, JSTL and
simple tags/tag files) does not easily allow a clean, script-less
programming style.
Kai