Tagged Questions
1
vote
1answer
30 views
can velocity ignore newlines and whitespaces?
I want to put newlines and whitespaces in my velocity template to make it more readable. But my output must conform to a format that does not accept newlines and whitespaces.
Can velocity be ...
0
votes
3answers
124 views
Lazy Loading with template engine's like velocity
In an application we are using Velocity to merge placeholders in templates. So ${firstname} is merged to a users first name because we add it before merging in a VelocityContext Hashmap.
Code:
...
0
votes
0answers
115 views
Advance for each loop in Velocity
I am trying to insert a symbol between each item in the foreach loop, so there is no symbol at the beginning of 1st item and end of last item.
I got the info as ...
0
votes
1answer
293 views
velocity set $layout does not work
I am using Velocity with Spring MVC, every thing works very well in my template but set layout, I'm trying to define different layouts and use them in my templates but $layout is not doing anything ...
3
votes
1answer
1k views
Stringtemplate low performance in comparison to Velocity and Mvel
I am trying to do some evaluation of template frameworks.
For a simple performance test I'm using these templates
private static String mvelTemplate = "Hello, my name is @{name},"
...
0
votes
2answers
538 views
How to create a sortedmap or treemap in velocity templates in liferay
How do I create a sorted map or tree map in velocity templates using liferay?
I am creating a velocity template in liferay portal. I use a HashMap to store some key/value pairs.
I am creating a ...
0
votes
1answer
272 views
Apache Velocity Template Language - Ignore invalid references
Suppose I want to parse a map like this in VTL.
map - { "person" = "xyz", age="99" }
Using VTL, I would call $map.person and $map.age to insert the appropriate values in the template.
Now suppose ...
0
votes
2answers
174 views
Java : Applying a Velocity script dynamically
I'm building a little portlet with Struts MVC that searches/lists books from a webservice.
In my very first tests, I integrated the Velocity Tools in my Struts project with no problem.
The final ...
1
vote
2answers
508 views
Maintaining proper CSS \ Javascript and using a Template Engine - a contradiction?
A template engine (Velocity, FreeMaker, etc.) lets you, among other things, split up your HTML into re-usable chunks. E.g. you have a <div> showing an ad that appears on lots of places in your ...
1
vote
2answers
675 views
Velocity templates : how do I put the result of #springMessage() into a velocity variable
I have a value that comes out of this statement :
#springMessage("count.french")
That I need to append to another string like
#set ( $theCount = '5467 ' )
then essentially I need to do this
...
0
votes
2answers
510 views
velocity template format
I Have velocity template like this one :
+-----------------------------------------------------------+-------------+-------------+-------------+-------------+
| $totalPel Pelanggan ...
3
votes
3answers
3k views
Velocity and $foreach.count
I am using velocity 1.7 and within a foreach loop I want to print the count. In the template I have the following string in a #foreach/#end section:
Count: $foreach.count
and was expecting to see ...
2
votes
1answer
225 views
How to create templates from html page automatically?
I have a use case in which I need to render an unformatted text in the format of a given web page programmatically in Java. i.e. The text should automatically be formatted like the web page with ...
1
vote
1answer
626 views
Plaintext Velocity template single-line foreach
I'm using velocity templates to generated plain-text emails for a notification system. I have a list of "Addressee" POJOs which contain a user ID and email address. I want to iterate over these POJOs ...
0
votes
1answer
470 views
Which is more popular, Freemarker or Velocity?
I'm about to invest resources in revamping my email system around a templating engine Freemarker or Velocity. They both seem comparable in terms of features and support. Which is more popular or has ...
2
votes
1answer
255 views
Apache Velocity Quiet Reference Notation as default behaviour
When Velocity encounters an undefined reference, its normal behavior is to output the image of the reference. For example, suppose the following reference appears as part of a VTL template" example:
...
4
votes
2answers
3k views
Velocity: Is a any way to check if variable is defined
I want to include one template nested into others cont1, cont2, cont3.
And nested template should be hide one specific control for cont1 only.
Before inclusion into cont1 I would like to assign value ...
2
votes
1answer
928 views
Internationalization support better in Velocity or FreeMarker?
Internationalization is important for us. So in choosing a template system for emails and other non-web (we use spring webmvc/JSP for web) templating needs, I need to know which handles translating ...
0
votes
4answers
1k views
velocity: tri-state Boolean property check
How do I fork three different cases depending on all the three states that Boolean property may have? Java code for this looks simple:
public class Foo {
public Boolean getBool() { return null /* ...
1
vote
1answer
627 views
Unable to load template when URLResourceLoader is used with Velocity
I am getting the following error when I try to access access Velocity template using URLResourceLoader.
org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource ...
10
votes
1answer
10k 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>
...
0
votes
1answer
95 views
Useful velocity gadgets
There are lots of interesting JSP tag libraries.
I wanted to know what good Velocity gadgets or libraries or resusable components are out there.
Please one per answer.
0
votes
1answer
130 views
Velocity: hide methods from template
Is there a way I can mark a public method as "not callable from a velocity template".
16
votes
5answers
10k views
Velocity vs. FreeMarker
Velocity or FreeMarker?
They look pretty much the same, even the syntax?
What to use? Or when to use what?
1
vote
3answers
437 views
Configure Velocity to fail on undefined $variable
Can Velocity be configure to fail (i.e. throw an Exception) when a $var is undefined.
Such a "fail-fast" strategy would help in our testing cycles.
0
votes
2answers
482 views
apache velocity: ship with compiled templates
Can I ship my application with compiled templates?
I there such a thing at all compiled templates in velocity? Or are they obligatorily recompiled on every run?
2
votes
3answers
1k views
Velocity using #parse where the file doesn't exist
we use Velocity to template our configuration files for several different environments and this process works really well but I have a quick question relating parsing a file that doesn't exist.
My ...
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 ...
40
votes
11answers
25k 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, ...
