Velocity (software)
Velocity is a Java-based template engine.
Hello World
The following template:
## Velocity Hello World <html> <body> #set( $foo = "Velocity" ) Hello $foo World! </body> <html>
processed by Velocity will produce the following text:
<html> <body> Hello Velocity World! </body> </html>
External link
Categories: Java platform