Apache Velocity
Template:Short description Script error: No such module "For". Template:More footnotes
Page Module:Infobox/styles.css has no content.
| Apache Velocity | |
|---|---|
| Lua error in package.lua at line 80: module 'Module:InfoboxImage/data' not found. | |
| [[Programmer|DeveloperTemplate:Pluralize from text]] | Apache Software Foundation |
| Written in | Java |
| Engine | Page Template:Plainlist/styles.css has no content.Template:EditAtWikidata |
| Operating system | Cross-platform |
| Type | Template engine |
| License | Apache License 2.0 |
| Website | velocity |
| Repository | Velocity Repository |
Script error: No such module "Check for conflicting parameters".
Apache Velocity first released in April 2001, is a Java-based template engine that provides a template language to reference objects defined in Java code. It aims to ensure clean separation between the presentation tier and business tiers in a Web application (the model–view–controller design pattern).
Velocity is an open source software project hosted by the Apache Software Foundation. It is released under the Apache License. Jon Scott Stevens derived the name from the AltiVec Velocity Engine in the PowerPC G4 chip.
Uses
Some common types of applications that use Velocity are:
Web applications: Web developers render HTML page structures. The content is populated with dynamic information. The page is processed with VelocityViewServlet or any of a number of frameworks that support Velocity.
AWS API Gateway body mapping template. - Source code generation: Velocity can be used to generate Java, SQL, or PostScript source code, based on templates. A number of open source and commercial development software packages use Velocity in this manner.[2]
- Automatic emails: Many applications generate automatic emails for account signup, password reminders, or automatically sent reports. Using Velocity, the email template can be stored in a text file, rather than directly embedded in Java code.
- XML transformation: Velocity provides an Ant task, called Anakia, which reads an XML file and makes it available to a Velocity template. A common application is to convert software documentation stored in a generic "xdoc" format into a styled HTML document.
- AWS API Gateway uses Apache Velocity engine for body mapping templates - JSON is output.
Code examples
The following template:
## Velocity Hello World
<html>
<body>
#set( $foo = "Velocity" )
## followed by
Hello $foo World!
</body>
</html>
processed by Velocity produces the following HTML:
<html>
<body>
Hello Velocity World!
</body>
</html>
Another example using conditions:
#if( $foo < 10 )
**Go North**
#elseif( $foo == 10 )
**Go East**
#elseif( $bar == 6 )
**Go South**
#else
**Go West**
#end
AWS API Gateway body mapping template, for DynamoDB HTTP:
{
"TableName": "happy-marketer",
"KeyConditionExpression": "pk = :pk AND begins_with(sk, :sk)",
#if ($input.params('projectStatus') == 'archived')
"FilterExpression": "projectStatus = :Archived",
#else
"FilterExpression": "projectStatus = :InProgress OR projectStatus = :Completed",
#end
"ExpressionAttributeValues": {
":pk": {
"S": "project"
},
":sk": {
"S": "$context.authorizer.claims.email"
},
#if ($input.params('projectStatus') == 'archived')
":Archived": {
"S": "Archived"
}
#else
":InProgress": {
"S": "In Progress"
},
":Completed": {
"S": "Completed"
}
#end
}
}
Another example with optional array; without condition will fail because of invalid resulting JSON:
{
"email": "$context.authorizer.claims.email"
#if ($input.params('countries') != "")
, "countries": $input.params('countries')
#end
}
The syntax and overall concept of the Apache Velocity templates is similar to the syntax of the older WebMacro template engine, which is now also an open source project. [citation needed]
See also
Lua error in mw.title.lua at line 404: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').
References
Page Template:Reflist/styles.css has no content.
- ^ Page Module:Citation/CS1/styles.css has no content."Apache Velocity - Project News". velocity.apache.org. Apache Software Foundation. Retrieved 2025-03-17.
- ^ Page Module:Citation/CS1/styles.css has no content."PoweredByVelocity". Velocity Wiki. Wiki.apache.org. 2009-12-30. Archived from the original on 23 March 2010. Retrieved 2010-03-29.
Bibliography
Page Template:Refbegin/styles.css has no content.
- Page Module:Citation/CS1/styles.css has no content.Harrop, Rob; Darwin, Ian (August 30, 2004), Pro Jakarta Velocity: From Professional to Expert (1st ed.), Apress, p. 370, ISBN 978-1-59059-410-0, archived from the original on July 5, 2009, retrieved September 4, 2009
- Page Module:Citation/CS1/styles.css has no content.Cole, Jim; D. Gradecki, Joseph (July 16, 2003), Mastering Apache Velocity (1st ed.), Wiley, p. 372, ISBN 978-0-471-45794-7, archived from the original on October 7, 2012, retrieved September 4, 2009
External links
Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found.
Lua error in package.lua at line 80: module 'Module:Authority control/config' not found.