129
I Use This!
Activity Not Available

Ratings and Reviews : Listing

uriel says:
Nice  
5.0
 
written almost 16 years ago

Only decent piece of Java software I have ever worked with.

And of all templatting systems out there, it is probably the one with the most sane syntax and design.

Does one thing, and does it well, I wish others could learn from this principle.

1 out of 1 users found the following review helpful.
Did this review help you? |
chillenious says:
Simple but efficient  
4.0
   
written about 17 years ago

There may be more powerful template engines out there, but Velocity is very easy to handle and it just works without getting in your way.

Did this review help you? |
jaxelson says:
Nice piece of software  
5.0
 
written almost 12 years ago

It does templating well. Really my largest problem with it was getting rid of it's log file. So I set it to use the log4j logger.

Properties velocityProps = new Properties();
velocityProps.setProperty( "runtime.log.logsystem.log4j.logger", "root" );
Velocity.init(velocityProps);

Did this review help you? |