Tagged Questions

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.

learn more… | top users | synonyms

35
votes
21answers
10k views

Suggestions for a Java-based templating engine?

Do you know a better template engine than FreeMaker or Velocity?
22
votes
11answers
11k 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, ...
19
votes
5answers
10k 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 ...
15
votes
6answers
6k 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
14
votes
1answer
2k 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() ...
13
votes
2answers
2k 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! ...
11
votes
5answers
4k views

Velocity vs. FreeMarker

Velocity or FreeMarker? They look pretty much the same, even the syntax? What to use? Or when to use what?
11
votes
2answers
4k 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 ...
10
votes
5answers
977 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 ...
8
votes
4answers
2k 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 should matter much) There are 6 options as far as I see (though they are not mutually exclusive): tiles sitemesh freemarker ...
7
votes
6answers
1k 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 ...
6
votes
4answers
2k 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?
6
votes
3answers
3k 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 ...
6
votes
4answers
2k 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 ...
6
votes
2answers
2k 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 ...
5
votes
4answers
2k 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> ...
5
votes
1answer
4k 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.
5
votes
1answer
1k 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 ...
5
votes
3answers
2k 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 ...
4
votes
2answers
141 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) ...
4
votes
1answer
950 views

Velocity: How to do an inline if/otherwise?

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 ...
4
votes
3answers
1k 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 ...
4
votes
3answers
3k views

How to calculate distance based on phone acceleration

I want to build something like this but using an android phone: http://www.youtube.com/watch?v=WOt9mb5QqRs I've already built an app that sends sensor information via socket (still looking for a good ...
4
votes
2answers
2k 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 ...
4
votes
3answers
318 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 ...
4
votes
4answers
519 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
1answer
421 views

Using $request.session.setAttribute to store a dropdown's setting

I'm trying to store a drop-down's setting that's controlling how many items to display in a roster. How do I go about doing this? The dropdown is using onChange to sort the results of the roster.
4
votes
1answer
4k 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> ...
4
votes
3answers
2k 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 ...
4
votes
3answers
358 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
3k 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
3answers
1k 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
3answers
2k views

Is there a way to debug Velocity templates in the traditional code debugging sense?

We make heavy use of Velocity in our web application. While it is easy to debug the Java side of things and ensure the Velocity Context is populated correctly, it would be extremely valuable to be ...
3
votes
1answer
43 views

How to do language (I18n) specifc velocity template

I want to have language specific velocity template. Each one should be in its own template File (with an language "postfix" like the one used for normal resource files). At the moment I am using: ...
3
votes
2answers
133 views

Rounding Up or Down in Velocity

Simple question: Can I do the equivalent of Math.ceil and Math.floor in a Velocity template? From what I could find I would have to use MathTool, but that doesn't seem to have what I want.
3
votes
1answer
591 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 ...
3
votes
6answers
543 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 ...
3
votes
1answer
420 views

Velocity + Spring

I am attempting to setup a webapp with the above components. I've jumped all but the last hurdle which is integrating Spring & Velocity Tools. I saw this post this morning, and updated it with a ...
3
votes
2answers
301 views

How to turn off VelocityViewResolver errors in Spring?

I'm using Velocity and Spring. Within Spring, I'm using the VelocityViewResolver paired with the ContentNegotiatingViewResolver. For the most part, this works great. The only problem is that the ...
3
votes
2answers
1k 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 ...
3
votes
1answer
167 views

Equivalent of DisplayTag for Velocity templating?

I'm searching for a component that I could plug into a velocity template such as displaytag available for JSP? I need a table renderer with pagination and autosorting. Let me know if any idea. ...
3
votes
2answers
662 views

Using Velocity with Tiles and Spring

I'm presently using Spring 3.0.4 and Apache Tiles 2.2.2 in my web app. I'd like to replace JSP with Apache Velocity 1.6.3 but I'm somewhat confused on how to do this. Ultimately, I'd like to be able ...
3
votes
1answer
200 views

Velocity: Is it better to use a Velocity Macro or #include(…) statement for a DIV block repeated many times on different pages?

I have about 10 standard blocks of dynamically generated HTML that get included on a large percentage of pages on my site (informational sidebars). I can use #include statements or define them as a ...
3
votes
2answers
742 views

Core Location and speed measurements

Does anyone know if Core Location in the iPhone OS uses anything but simple vector math to calculate speed? I've read that the GPS system can provide speed measurements that can be accurate when ...
3
votes
1answer
476 views

Unable to instantiate VelocityEngine, when deploying war file

I am deploying an application on Tomcat 6, using a war file. I've compiled the source code given by the vendor on the same machine, then moved the war file to {tomcat-home}/webapps/ When I start up ...
3
votes
3answers
841 views

Calculate initial velocity to move a set distance with inertia

I want to move something a set distance. However in my system there is inertia/drag/negative accelaration. I'm using a simple calculation like this for it: v = oldV + ((targetV - oldV) * inertia) ...
3
votes
3answers
2k 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" ...
3
votes
4answers
798 views

How do I create a velocity template that outputs two '#' litterals at the beginning of the line?

I need to create a velocity document that has some lines prefixed with ¨## Foo", but since the # is the velocity directive command, it is not working for me. What I want my output document to look ...
3
votes
3answers
3k 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 [ } ] ( ...
3
votes
7answers
12k 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]) ...

1 2 3 4 5 9