views:

1267

answers:

5

Velocity or FreeMarker?

They look pretty much the same, even the syntax?

What to use? Or when to use what?

+5  A: 

Velocity isn't really under active development any more. Freemarker is.

Freemarker is also a lot more flexible, in my experience.

skaffman
+2  A: 

They try to differentiate themselves from time to time ( example http://freemarker.org/fmVsVel.html ).

I've worked extensively with both and from my perspective they're very similar. There are just so many features that you can build into a templating language, the rest is just fluff.

leonm
Some of those are obsolete right now(See : This list is originally based on a comparison with Velocity 1.2) since Velocity reached 1.6.In terms of performance, I didn't see a valid test to see which one performs better.
adrian.tarau
+3  A: 

Use Freemarker if you can :

  • Still in active development like @skaffman said
  • Good documentation, better than Velocity IMHO
  • Provided as alternative templating language in many web frameworks
  • Less dependencies than Velocity
  • More complete than the raw Velocity without extensions.
  • Also see the link provided by @leonm
John Doe
+4  A: 

The goals for the projects are different.

Velocity's goal is to keep templates as simple as possible, to help maintain a segregation between logic and presentation, so you don't slide down the slippery slope of sticking code in templates. Sometimes this is the right thing. Of course, sometimes being able to wire complicated logic directly into templates is the right thing.

Velocity doesn't get frequently rev'd, but that doesn't mean it's not under active development. The user community is large, the code is fast and stable, the syntax is basically fixed. Over the last several years Freemarker has undergone churn on the template syntax and api side. Sometimes it's nice to leave well enough alone. Again, depends on what you're looking for.

Freemarker's documentation is much more extensive- and it's a much more complicated piece of software.

Many of the use cases for Freemarker boil down to wanting a complex templating workflow and not wanting a compilation step. In recent years, rather than struggle through this with Java I've just been using Python or Ruby instead.

jrb
+1  A: 

There are two published books about Velocity:

and other books that have chapters about it too. So, that much about FreeMarker having more or better docs :).

A. Ionescu