0
votes
1answer
10 views
How to proper initialize the nvelocity engine?
As I saw in some examples, and tried to understand throughout the velocity site, there are three ways of initializing the velocityengine:
- With the default configurations : .Init( …
0
votes
1answer
44 views
Is there a way to just copy resources when using a Maven archetype (no Velocity)?
We are using a Maven archetype to create an initial setup for projects using our framework, which relies heavily on Freemarker. As a consequence we need to copy a few Freemarker te …
0
votes
1answer
17 views
Velocity - Delete fields when can’t be merged
I use velocity to merge a String(template) with field like
hi there I'am ${name},
And I'am ${age} old.
velocity merged the field ${name} and ${age} with a kind of hashtable:
ve …
0
votes
0answers
27 views
Velocity sort XML file with dynamic-elements
Let's say I have a XML file wich looks like this:
<root>
<dynamic-element name='name' type='text' repeatable='true'>
<dynamic-element name='prename' type='tex …
3
votes
4answers
180 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 …
2
votes
6answers
1k 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($ …
0
votes
2answers
54 views
Configuring velocity within a tomcat web application. (Cookbook wanted)
Hi all,
I have recently been introduced to the Velocity project.
I have written a template and have run it as a simple Java application.
Integration within my existing web proje …
0
votes
2answers
31 views
Append # at the beggining of a string generated by a velocity macro
Does anybody know how to get a velocity macro to run when it's prepended by an Octothorpe?
I have a velocity macro called #macro(getUniqueID $id)
And I want to use it to spit o …
0
votes
2answers
52 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 …
4
votes
3answers
548 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.
0
votes
2answers
51 views
Apache Velocity Which Variables’s are Availible in Template
Is it possible to get a list of variables inside the template and fill them in using the list?
I would like my users to create their templates that means i won't know before hand w …
0
votes
2answers
71 views
BigDecimal evaluated as a string in Velocity, Struts2
I am using struts2 with Velocity 1.5 and Velocity Tools 1.3. In my template I want to do a loop like:
#set ($count = ${item.qty})
#foreach($i in [1..$count])
${item.price}
…
0
votes
2answers
75 views
Apache Velocity can not Initialize
When i try to initialize velocity engine using
VelocityEngine engine = new VelocityEngine();
engine.init();
I encounter the same error when i try
Velocity.init();
org.apac …
-1
votes
1answer
68 views
FreeMarker Vs Velocity [closed]
Possible Duplicate:
Velocity vs. FreeMarker
Hi. Wanna ask which is better to use either FreeMarker or Velocity as templating library for creating my messages for my mail s …
1
vote
3answers
179 views
Velocity vs. FreeMarker
Velocity or FreeMarker?
They look pretty much the same, even the syntax?
What to use? Or when to use what?
