Caucho Technology
documentation
examples
changes

overview
quick start
installation
command-line
configuration
admin
amber
clustering
caching
database
deployment
ejb 3.0
embedding
filters
hessian
hmtp
ioc
jsp
logging
messaging
performance
quercus/php
remoting
scheduled tasks
security
server push
servlets
third-party
troubleshooting
virtual hosting
watchdog
webapp
xml and xslt

introduction
compilation
el
jstl
directives
variables
actions
applications
schema for jsp-2.0 .tld files
velocity syntax
jsp templates

velocity-style syntax


The Apache Velocity project introduces an alternative syntax to the familiar JSP expressions and scriptlets. Resin's extension allows the use of Velocity-style syntax in JSP files. The Velocity-style syntax is transformed into JSTL standard tags.

Velocity

The syntax is based on expressions like ${'${'}foo} and scriptlets with #\{...}#. Because the alternative syntax avoids the brackets which fill JSP pages, it can make pages more readable and therefore more maintainable.

Because Resin's Velocity-style syntax is transformed to the JSTL tag library, all JSTL expressions are allowed.

JSP style
<%
int count;
%>

<h3>A sample <%= count %></h3>

<% if ("foo".equals(request.getParameter("a"))) { %>
  <h3>Foo!</h3>
<% } else { %>
  <h3>Bar!</h3>
<% } %>

The same JSP file could be written in Velocity-style as follows. The jsp:directive is required because JSP pages use strict JSP syntax by default.

Velocity style
<jsp:directive.page velocity='true'/>
\#{
int count;
}#

<h3>A sample ${'${'}count}</h3>

#if ("foo" == params.a)
  <h3>Foo!</h3>
#else
  <h3>Bar!</h3>
#end

The choice between the two is a matter of preferences. An advantage of the velocity style is that expressions and scriptlets avoid using brackets. In large pages, sorting out the HTML or XML from the JSP syntax can become confusing.

Enabling velocity-style syntax

Velocity-style syntax can either be enabled on a per-JSP page with velocity='true' or in the web-app with the <jsp> tag:

Enabling velocity for a page
<jsp:directive.page isVelocityEnabled='true'/>
  ...
Enabling velocity for a web-app
<web-app xmlns="http://caucho.com/ns/resin">
  <jsp velocity-enabled='true'/>
  ...
</web-app>

Older web applications and JSTL

Resin uses the format of the web.xml to determine the specification version for the web application. Older versions of the specification did not support JSTL syntax, which is also used for Velocity syntax (see expressions, below). It is important when using velocity syntax that the WEB-INF/web.xml and/or WEB-INF/resin-web.xml files indicate the proper specification version. The easiest way to do this is to specify the top level element as <web-app xmlns="http://caucho.com/ns/resin">

expressions

Expressions are enclosed between "${'${'}" and "}", for example '${'${'}count}' and '${'${'}count + 15}'.

The '${'${'}...}' syntax is equivalent to '<c:out value="..."/>'.

${'${'}expression}

scriptlets

Scriptlets use the '\#{ ... }#' syntax. This is entirely equivalent to '<% ... %>'. (Note, Velocity does not have this syntax because it creates its own language instead of escaping to Java.)

\#{
 statements
}#
\#{
String key = request.getParameter("key");
if (key.equals("")) {
  response.sendError(500, "Bad key");
  return;
}
}#
...

if statements

The velocity-style syntax directly supports if statements. The syntax is

#if (expr1)
  ...
#elseif (expr1)
  ...
#else
  ...
#end

The expressions can be any JSTL expression. The if statement is transformed into:

<c:choose>
<c:when test="${'${'}expr1}">
  ...
</c:when>
<c:when test="${'${'}expr2}">
  ...
</c:when>
<c:otherwise>
  ...
</c:otherwise>
</c:choose>

foreach statements

The velocity-style syntax directly supports iteration with a foreach statements.

#foreach (var in expr)
  ...
#end

This style of foreach is transformed into the following:

<c:forEach items="${'${'}expr}" var="var">
  ...
</c:forEach>

An example use might be the following:

foreach in Java
<jsp:page.directive velocity='true' import='java.lang.*'/>
\#{
  ArrayList list = new ArrayList();
  list.add("foo");
  list.add("foobar");
  pageContext.setAttribute("list", list);
}#
#foreach (value in list)
  <li>${'${'}value}
#end

The velocity-style syntax also supports integer iteration.

An example might be the following:

foreach in Java
<jsp:page.directive velocity='true'/>
#foreach (value in [3..9])
  <li>$value
#end

Copyright © 1998-2008 Caucho Technology, Inc. All rights reserved.
Resin ® is a registered trademark, and Quercustm, Ambertm, and Hessiantm are trademarks of Caucho Technology.