Apache Velocity is a Java-based template engine. It can be used to dynamically generate web pages, email messages, source code, or any other text file.
38
votes
11answers
24k views
Template Engines for Spring Framework
I've taken quite a shine to the Spring Framework and would like to get into it a bit more. I have noticed that aside from plain vanilla JSPs there are various template engines for use with Spring MVC, ...
33
votes
5answers
8k views
Why would I use a templating engine? jsp include and jstl vs tiles, freemarker, velocity, sitemesh
I'm about to choose to way to organize my view (with spring-mvc, but that shouldn't matter much)
There are 6 options as far as I see (though they are not mutually exclusive):
tiles
sitemesh
...
32
votes
5answers
16k views
Velocity editor plugin for Eclipse?
I've seen Veloedit, which seems to have good syntax highlighting but doesn't allow tab characters in the file being edited (wtf?) and also has no understanding of HTML.
With a little bit of googling ...
21
votes
2answers
9k views
How to use String as Velocity Template?
What is the best way to create Velocity Template from a String?
I'm aware of Velocity.evaluate method where I can pass String or StringReader, but I'm curios is there a better way to do it (e.g. any ...
20
votes
7answers
12k views
JSP vs Velocity what is better?
What is better between JSP and velocity in
- Performance
- Ease of use
- Ease of creating reusable components
- Availability of open source 3rd parties
- IDE support
20
votes
1answer
4k views
NHibernate L2 Cache configuration in Fluent NHibernate
Is ti possible to configure the L2 cache provider in code via FHN?
Adding a line to the following config is what I'm after:
return Fluently.Configure()
...
19
votes
2answers
4k views
What are the main differences between StringTemplate and FreeMarker?
The net seems to be full of comparisons between Velocity and FreeMarker, and they seem to be reasonably equivalent. But there seems to be almost no comparisons between StringTemplate and FreeMarker!
...
16
votes
5answers
9k views
Velocity vs. FreeMarker
Velocity or FreeMarker?
They look pretty much the same, even the syntax?
What to use? Or when to use what?
13
votes
1answer
11k views
How to convert string into integer in velocity template?
i have a velocity template file which has the data from xml. I want to convert the string into integer type. can anyone help me to find out the solution.
13
votes
2answers
4k views
How I hide empty Velocity variable names?
I am using Struts + Velocity in a Java application, but after I submit a form, the confirmation page (Velocity template) shows the variable names instead an empty label, like the Age in following ...
12
votes
5answers
5k views
Why should I learn and use struts?
I'm a java developer, not seasoned, but I am familiar with most concepts reasonably well.
I recently built a website using Tomcat/JSP (~30 dynamic pages). I made the newbie mistake of including large ...
11
votes
4answers
8k views
Loading velocity template inside a jar file
I have a project where I want to load a velocity template to complete it with parameters. The whole application is packaged as a jar file. What I initially thought of doing was this:
VelocityEngine ...
11
votes
4answers
8k views
Freemarker vs. Velocity
I'm trying to decide between Freemarker and Velocity to use as a template engine, any advantages/disadvantages you see regarding each?
Any alternatives that I should look at instead?
10
votes
1answer
9k views
in velocity can you iterate through a java hashmap's entry set()?
Can you do something like this in a velocity template?
#set ($map = $myobject.getMap() )
#foreach ($mapEntry in $map.entrySet())
<name>$mapEntry.key()</name>
...
10
votes
2answers
6k views
Problem with subject encoding when sending an email
I'm sending an email and I'm receiving it correctly but the encoding of the subject is not correct. I'm sending "invitación" but I'm receiving "invitaci?n". The content of the message is OK.
The ...
10
votes
2answers
7k views
Is there a way to break from a foreach loop in velocity?
I'm looking for a certain condition by using foreach to iterate through a collection (of permissions). So if I find all that I need and don't need to loop anymore, is there a way to break out of the ...
10
votes
2answers
6k views
“for” loop in velocity template
I already posted a similar question a week ago on How to use 'for' loop in velocity template?.
So...basically I can't use 'for' loop in a velocity template.
Let's say I have a variable that ...
10
votes
3answers
7k views
velocity template and javascript
I try add javascript to my velocity template.
<html>
<head>
<title>:: $currency.CurrencyName Detail Info ::</title>
</head>
<body>
<table>
<tr>
...
10
votes
3answers
4k views
how to plot a streamlines , when i know u and v components of velocity(numpy 2d arrays), using a plotting program in python?
i hope the title itself was quite clear , i am solving 2D lid-driven cavity(square domain) problem using fractional step method , finite difference formulation (Navier-Stokes primitive variable form) ...
10
votes
2answers
4k views
How to do an inline if/otherwise in Velocity?
In pure Java, I could do this:
value = (a > b) ? a : b;
Whereas in Velocity, the long form would be:
#if($a > $b)
#set($value = $a)
#else
#set($value = $b)
#end
Is there ...
10
votes
1answer
1k views
velocity (test instanceof)
How can I test the class of a given object in a velocity template. I can't find an instanceof directive
9
votes
6answers
4k views
String replacement in java, similar to a velocity template
Is there any String replacement mechanism in Java, where I can pass objects with a text, and it replaces the string as it occurs.
For example, the text is :
Hello ${user.name},
Welcome to ...
8
votes
5answers
4k views
How to escape a # in velocity
I would like to know how can i escape a # in velocity. Backslash seems to escape it but it prints itself as well
This:
\#\#
prints:
\#\#
I would like:
##
8
votes
2answers
9k views
Velocity can't find resource
Something is wrong and it is very frustrating. I read on velocity's homepage that when I run a webapp then some properties should be set. And I've done that but no matter what I do I keep getting the ...
8
votes
4answers
3k views
Spring MVC: Resolving the view based on User-Agent
Spring Version: 2.5.6
I want to resolve the view to a specific velocity file based on the value of the User-Agent header.
My current line of thinking is an implementation similar to the ...
7
votes
1answer
8k views
$null check in velocity
I came to know about null check using $null in velocity 1.6 through a resource updated by you.
Resource: http://stackoverflow.com/questions/24495/reading-model-objects-mapped-in-velocity-templates
But ...
7
votes
3answers
3k views
Benefits of using JSTL vs Velocity for view layer in MVC app?
I'm currently building a Spring MVC application. I was looking to use JSP pages with tag libraries for handling the view layer and formatting of the HTML, but I've come across another group in my ...
7
votes
3answers
4k views
Velocity Templates - New Line
I've been working with Apache's Velocity engine and a custom template.
The thing is, that I haven't been able to generate a String with the corresponding line breaks.
I tried almost everything that I ...
7
votes
1answer
2k views
Atlassian JIRA Plugin Development: How to make variables available to velocity templates
FAIR WARNING: this question is going to be pretty tough to answer unless you have experience with JIRA and have access to their source (enterprise users).
Greetings all,
I am writing a plugin which ...
6
votes
6answers
21k views
What is the best way to access an array inside Velocity?
I have a Java array such as:
String[] arr = new String[] {"123","doc","projectReport.doc"};
In my opinion the natural way to access would be:
#set($att_id = $arr[0])
#set($att_type = $arr[1])
...
6
votes
3answers
5k views
Unsetting a variable in Velocity
Is it possible to set a Velocity reference to 'null' or 'undefined'?
The Velocity template language reference says
#set - Establishes the value of a reference
Format:
# [ { ] set [ } ] ( ...
6
votes
3answers
2k views
Velocity in OSGi: how to load templates from classpath
I am developing an application for OSGi with velocity template engine.
It works great for loading my templates by file loader but now I have to implement this templates in my jar and load it as ...
5
votes
6answers
3k views
How do I create a custom directive for Apache Velocity
I am using Apache's Velocity templating engine, and I would like to create a custom Directive. That is, I want to be able to write "#doMyThing()" and have it invoke some java code I wrote in order to ...
5
votes
3answers
4k views
Using Java 5 enums as Velocity variables
all. I need to use java 5 enum in velocity template, so that I could write something like
public enum Level{
INFO, ERROR;
}
Velocity template:
#if($var == Level.INFO)
...
#else
...
#end
How ...
5
votes
6answers
2k views
Detect when android device is in a moving car
For a personal project, I'm trying to detect when an android device is with someone driving. I initially thought of using GPS to determine average velocity, but decided that would consume power and ...
5
votes
4answers
952 views
How to validate HTML matches W3C standards
I have a project that generates HTML pages using velocity template and Java. But most of the pages do not comply with W3C standards. How can I validate those HTML pages and get a log telling me what ...
5
votes
2answers
4k views
Accessing constant values from an Apache Velocity template?
Is it possible to access a constant value (i.e. a public static final variable defined in a Java class) from a Velocity template?
I would like to be able to write something like this:
#if ($a lt ...
5
votes
3answers
6k views
Velocity string function
I just start using Java Velocity.
Now I want to create a java class template.
package $app.package_namespace
public class ${app.name}Station
{
#foreach($s_attribute in $app.station)
...
5
votes
2answers
3k views
How access size of an array/collection in velocity templates?
I am using velocity for email templates in my java/spring 3 app, and was wondering how i can get the size of an arraylist added to the model from within the template.
5
votes
1answer
3k views
Velocity templates seem to fail with UTF-8
i have been trying to use a velocity Template with the following content:
Sübjäct $item
everything works fine except the translation of the tow unicode characters. The result string printed on the ...
5
votes
4answers
3k views
How can I trim whitespace by Velocity
I have a method called render_something which can creates a lot of whitespace, for example:
<a href="#">#render_something('xxx')</a>
The result can be:
<a href="#">
...
5
votes
1answer
2k views
How to configure Velocity Escape Tool with Spring Properties?
I create e-mails from templates via Velocity in a Spring Web Application. Now I need to HTML escape SOME of the values. I found the Velocity Escape Tool. But I did not get the configuration working.
...
4
votes
3answers
7k views
How to set properly the loader path of velocity
i would like that my velocityengine look for templates from a designed path.
i did this :
<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
...
4
votes
3answers
6k views
How to access static members in a Velocity template?
I'm not sure if there is a way to do this in Velocity or not:
I have a User POJO which a property named Status, which looks like an enum (but it is not, since I am stuck on Java 1.4), the definition ...
4
votes
3answers
3k views
velocity framework on google app engine
i am trying to use velocity framework on google app engine. i wrote a small program with a main method and tried running it locally. i get the following exception :
Exception in thread "main" ...
4
votes
3answers
660 views
Which Java templating system should I use to generate emails?
I have a website that uses JSP as its view technology (and Spring MVC underneath). Unfortunately, JSP is just a pain to use for anything that doesn't involve an HTTP session. I would like to be able ...
4
votes
3answers
5k views
Velocity #parse but assign it to a variable
Say you have a standard template with included (parsed) header, body, footer templates.
In the body template a variable like $subject is defined and you want that also displayed in the header ...
4
votes
4answers
663 views
Need a Java-based HTML prettifier to clean up Velocity-generated HTML
Web app I'm working on generates HTML using Velocity templates. Problem is that using whitespace in velocity templates and other formatting results in butt-ugly HTML (excessive whitespace, ...
4
votes
3answers
2k views
tiles in struts project - better than freemarker?
I want to use a template engine in a struts application and would like to know if using TILES can be recommended instead of FREEMARKER or VELOCITY.
4
votes
2answers
1k views
Reading model objects mapped in Velocity Templates
I have a Struts + Velocity structure like for example, a Person class, whose one property is a Car object (with its own getter/setter methods) and it is mapped to a Velocity form that submits to an ...