Jump to content

Apache Velocity: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Mskott (talk | contribs)
Latest release is 1.6.2
cat with dev tools
Line 51: Line 51:


==See also==
==See also==
*[[Apache Torque]]
*[[JavaServer Pages|JSP]]
*[[JavaServer Pages|JSP]]
*[[FreeMarker]]
*[[FreeMarker]]
Line 63: Line 64:


[[Category:Apache Software Foundation|Apache Velocity]]
[[Category:Apache Software Foundation|Apache Velocity]]
[[Category:Template engines]]
[[Category:Java development tools]]

[[Category:Java enterprise platform]]
[[Category:Java enterprise platform]]
[[Category:Java platform]]
[[Category:Java platform]]
[[Category:Template engines]]


{{programming-software-stub}}
{{programming-software-stub}}

Revision as of 13:45, 27 May 2009

Apache Velocity
Developer(s)Apache Software Foundation
Stable release
1.6.2 / March 19, 2009 (2009-03-19)
Repository
Written inJava
Operating systemCross platform
Typetemplate engine
LicenseApache License 2.0
Websitehttp://velocity.apache.org

Apache Velocity is an open source software project directed by the Apache Software Foundation. Velocity is a Java-based template engine that provides a simple yet powerful template language to reference objects defined in Java code. Its aim is to ensure clean separation between the presentation tier and business tiers in a Web application (see model-view-controller design pattern). Some common types of applications which use Velocity are:

Code example

The following template:

## Velocity Hello World
<html>
    <body>
       #set( $foo = "Velocity" )
       ## followed by
       Hello $foo World!
    </body>
</html>

processed by Velocity will produce the following text:

<html>
    <body>
     Hello Velocity World!
    </body>
</html>

The syntax and overall concept of the Apache Velocity templates is very similar to the syntax of the older WebMacro template engine which is now also an open source project.

See also

External links