Search: in
Apache Velocity
Apache Velocity in Encyclopedia Encyclopedia
  Tutorials     Encyclopedia     Videos     Books     Software     DVDs  
       





Apache Velocity

Apache Velocity (formerly known as Jakarta 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 (the model view controller design pattern).

Contents


Uses

Some common types of applications that use Velocity are:

  • Web applications: Web designers create HTML pages with placeholders for dynamic information. The page is processed with VelocityViewServlet or any of a number of frameworks which support Velocity.
  • Source code generation: Velocity can be used to generate Java source code, SQL, or PostScript, based on templates. A number of open source and commercial development software packages use Velocity in this manner.[1]
  • 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 documentation stored in a generic "xdoc" format into a styled HTML document.

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

References

Bibliography

External links

ca:Jakarta Velocity de:Apache Velocity fr:Apache Velocity it:Apache Velocity ja:Apache Velocity pl:Velocity ru:Apache Velocity th:






Source: Wikipedia | The above article is available under the GNU FDL. | Edit this article



Search for Apache Velocity in Tutorials
Search for Apache Velocity in Encyclopedia
Search for Apache Velocity in Videos
Search for Apache Velocity in Books
Search for Apache Velocity in Software
Search for Apache Velocity in DVDs
Search for Apache Velocity in Store




Advertisement




Apache Velocity in Encyclopedia
Apache_Velocity top Apache_Velocity

Home - Add TutorGig to Your Site - Disclaimer

©2011-2013 TutorGig.info All Rights Reserved. Privacy Statement