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.
3
votes
0answers
200 views
Include part of tile with Apache Tiles?
I'm having a hard time with Tiles.
I have a webapp with many views, all of these are composed around a single template. The template has about three or four "placeholders", and for each view, ...
2
votes
0answers
439 views
How to include a static or uploaded file in Velocity macro via #include
I am trying to optimize some mobile web pages (or number of server requests more accurately) by in-lining some CSS in the HTML downloaded with initial request.
These pages are delivered from our ...
2
votes
0answers
424 views
Log error in velocity on Linux systems
When instatiating Velocity I get this error (posted just the "caused by"-messages):
java.lang.RuntimeException: Velocity could not be initialized!
Caused by: ...
2
votes
0answers
1k views
Changing Location of Velocity.Log File
Seems pretty straight forward. Documentation at http://velocity.apache.org/engine/devel/developer-guide.html#Configuring_Logging
says to set the runtime.log property. Here's what I got for all my ...
1
vote
0answers
56 views
The RepositoryFactory has already been initialized Exception in tiles and Velocity Integration
I am trying to integrate the tiles+ velocity in Spring MVC.
I found the link in github which was serving the same purpose. So I am using those classes in my Project in Eclispe.
When I run the project ...
1
vote
0answers
152 views
Struts2 tags are not working in Velocity templates
I am using struts2 with Apache Tiles2 and Velocity templates in my webapp.
The problem I am getting is that struts2 tags are not evaluating in velocity templates only when I use velocity with tiles.
...
1
vote
0answers
26 views
How To access properties in velocity Templete?
I have an properties file in one location (/home/XXXX) and want one of its property acessed in velocity templete in location ...
1
vote
0answers
75 views
How to retrieve invalid references from Velocity Engine?
I am wondering if there is a way to retrieve a list of invalid references in Velocity after calling VelocityEngine.evaluate.
Velocity Eventhandler has some nice information about creating an ...
1
vote
0answers
144 views
Struts2 with Velocity and Tiles
I am developing a web application on Struts2. For front end development I have decided to use Velocity with Tiles. I have found Velocity and Tiles plugins for Struts2 but haven't found any related ...
1
vote
0answers
151 views
Sorting an array of strings in VTL
Being mainly a VB.NET programmer, I am extremely new to VTL (Velocity Template Language). I am currently trying to customise an application that uses Velocity templates and Jython.
I have the ...
1
vote
0answers
82 views
Skip simple quote in a h2 database query
I'm trying to create an SQL file to execute in a h2 database. this file is generated from a modeling tool (magicdraw) based on the apache velocity syntax.
The problem is that some text fields I ...
1
vote
0answers
119 views
velocity not being initiated when triggered by Quartz Job
Velocity Engine is being used in my project for sending mails on user action and on job trigger.
While the mails that are sent on user action are perfectly fine, The mails being sent by jobs are ...
1
vote
0answers
435 views
Error while using velocity to send email content
i am using spring mvc to send email content with velocity 1.7 jar. Here is my bean configuration.
`<bean id="velocityEngine"
class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
...
1
vote
0answers
288 views
Velocity - #springFormInput and custom ID
Whenever I use #springFormInput like:
#springFormInput("command.name")
I get markup with ID set to name:
<input type="text" id="name" ... />
In many cases I want short names like ...
1
vote
0answers
216 views
Upgrade VelocityTools 2.0 new tools.xml doesn't load
I'm switching to VelocityTools 2.0 but the new tools.xml doesn't load. I replaced toolbox.xml and now I use tools.xml but when I run the server I get:
"XMLToolboxManager:100: XMLToolboxManager ...
1
vote
0answers
123 views
Architecture with Velocity templating
I would like to ask a couple of questions regarding use of Velocity templating engine just to make sure i am using is correclty.
There is a data model (deep object graph of models) that i want to ...
1
vote
0answers
164 views
velocity - which artitecture for flexibility?
I'm building web applications using Spring (scaffolded with ROO) and Velocity for the template engine.
Those applications are very similar in their flow, most of the time the logic doesn't change ...
1
vote
0answers
138 views
java velocity used to generate class files based on mysql tables
How can I generate java class files that are based on mysql database tables?
I have seen some velocity templating examples but nothing that reads a mysql db table and generates a class file from it.
...
1
vote
0answers
140 views
Writing to a Spring-bound Map in Velocity
I'm trying to iterate over a Map in Velocity using Spring MVC and creating a FORM from it. This works fine, but I can't get the values to save back to the map.
Here's the template:
<form ...
1
vote
0answers
827 views
Spring MVC 3 pagination using PagedListHolder
I'd like to use PagedListHolder to do pagination.
I display a list of products on a page. When the next page is requested, I must make a call to a RESTFul service for the results. Hence, there's no ...
1
vote
0answers
147 views
Retrofitting jqGrid to a Velocity template under Tomcat?
I am new to JQuery and jqGrid. I have been successful in getting them to work well with a new ASP.Net MVC3 application I am creating. However, I wanted to retrofit jqGrid to a Tomcat/Java ...
0
votes
0answers
21 views
Is there a way to use Apache Velocity with .properties file?
I've a JSON template in a property file in my project. Is there a way I can use Apache Velocity for embedding dynamic content without using .vm file ?
I've something like:
template = [ { "name" : ...
0
votes
0answers
31 views
User autocomplete textbox in velocity template
In JIRA, how can i create user picker autocomplete field into velocity template.
is there any service which can be use or any documentation or stuff helps a lot.
Thank You
0
votes
0answers
8 views
Parse output of breadcrumbs function
Hi guys could you give me a hand on this...
I amb using the breadcrumbs function provided by velocity:
#if ($the_title != "Home")
<nav class="site-breadcrumbs" id="breadcrumbs" ...
0
votes
0answers
9 views
Edit objects in a page with Xwiki
I'm trying to edit a object in a wiki page
I created a class with name = "Test.Message" and a single string attribute named "text"
I put this code in a page
{{velocity}}
{{html clean="false" ...
0
votes
0answers
16 views
Unable to find resource velocity + mvc + spring
I've a webapp build to MVC+spring pattern. I want use velocity to send email (html format).
MVC's layer is ok and my project runs good, I've some problem with velocity.
I've a folder ...
0
votes
0answers
31 views
Getting placeholder list from a Velocity template
suppose I have a Velocity template like this:
Hi!, my name is ${name} and I'm ${age} years old.
Note the template has no loops or conditional statements.
I would like to get a list with these ...
0
votes
0answers
39 views
Spring + Velocity Webapp Resource Loading
This was a real pain. I am trying to configure Spring to use Velocity templates for emails we are going to send. Following are not acceptable in my scenario.
Jar up the templates and adding it to ...
0
votes
0answers
18 views
Regex for velocity template attribute
I am using HtmlCompressor and ant to compress velocity templates i.e.
<apply executable="java">
<fileset dir="/WEB-INF/templates" includes="**/*.vm">
...
0
votes
0answers
74 views
Spring MVC Form backing object field names
Is it possible to specify a text input field id to bind a form backing object to? My form is using third-party javascript and I do not have control over the input's id value.
For example:
<input ...
0
votes
0answers
35 views
Maven Archetype Use Velocity Templates in File Names
I'm creating a Maven archetype, and I want it to generate some directory names (Java package names) and file names using Velocity templates based on a single property.
For example:
I have this ...
0
votes
0answers
30 views
Populating Drop Down list using macro velocity
i am having four timezone maps referring to each timezones like PST, CST, EST and MST.
I have to populate the drop down list with time using macro and vm file.
can anyone guide me how to invoke ...
0
votes
0answers
31 views
Jira Custom Release Notes: Velocity if(..) Statements and Returned Values from Macros
I have been experimenting with Jira's custom release notes feature, which requires writing a custom .vm file. This is my first time working with Velocity and would greatly appreciate a hand with this ...
0
votes
0answers
19 views
Changing speed of a point moving along a graph in MATLAB
I have used the code provided by @Amro in other question:
%# control animation speed
DELAY = 0.01;
numPoints = 600;
%# create data
x = linspace(0,10,numPoints);
y = log(x);
%# plot graph
...
0
votes
0answers
26 views
How to integrate velocity and tiles in spring mvc. Getting mapping not found for WEB-INF/views/vm/one.vm
I am trying to integrate tiles2 and velocity in spring mvc, but I am getting error that mapping not found in app-servlet for url WEB-INF/views/vs/one.vm
I have done all the mapping in xml..the code is ...
0
votes
0answers
28 views
How to access properties of an object with dynamic macros in Velocity templates
I have a velocity template defined as follows:
#macro(aMacro $par1)
$par1
$par1.id
#end
##dynamic macro call
====================
#set($macroName = "aMacro")
#set( $call = "#$macroName('$p1')" ...
0
votes
0answers
24 views
Eclipse Velocity and xml formatting
I am generating an XML document in Velocity templates. Does anyone know if there is a way to have Eclipse do the proper formatting and identation of both velocity commands and xml? At the moment I can ...
0
votes
0answers
16 views
Using Itype.getMethod in velocity
I have a requirement where in i want to copy the fields and getter/setter methods from one class to other. in velocity template can i write field.declaringType.method()..
0
votes
0answers
69 views
opencv - find contour and calculate the dynamics
I have stack of successive bw images where in multiple contours of different size. Basically they 'grow' and 'shrink'. I want to calculate the area, rate of growth of the contour. Is there functions ...
0
votes
0answers
35 views
Velocity error handling and recovery
We are currently using velocity in production to render XML type documents, each document is composed of several entities (similar) and occasionally the rendering fails because of several reasons ...
0
votes
0answers
45 views
apache velocity refuses to work with virgo
I've been working my way through virgo configuration issues on a project, and there is one library that just refuses to cooperate - apache velocity.
My bundle's manifest is thus (I've changed or ...
0
votes
0answers
49 views
Including images in velocity template with a standalone application
Here is my problem, I am developping a standalone java application ( this is not a web application ) to send emails with velocity. I am trying to include images in a template that are in a folder of ...
0
votes
0answers
40 views
iText ImgCCITT and Velocity
I created a QRCode barcode in iText and I want to save this file to disk. It appears to create a ImgCCITT type. It saves down to the disk but the file is corrupted. I also tried to save it as .jpg. ...
0
votes
0answers
117 views
use velocity ,occur “java.lang.NullPointerException”
(version:velocity-1.7,commons-collections-3.2)
I use velocity to parse vm template,and set value in request scope ,show in jsp
My app work normaly a period of time, but When users access a period ...
0
votes
0answers
23 views
Force interpreting of directives as text?
I am using Java and an Apache Velocity template to generate some C code. Currently I have to escape #define preprocessor directives, as Apache Velocity also uses this directive. Is it possible to tell ...
0
votes
0answers
73 views
Velocity with tiles 2 and spring-mvc
I am looking for a way to use velocity with tiles 2 :
in the end I want to switch from jsp / vm like this :
<tiles-definitions>
<definition extends="default" name="view1">
...
0
votes
0answers
100 views
Velocity folder template
I'm trying to use velocity framework to send email through my webapp. I've configured in this way my email-context.xml
..............
<bean id="velocityEngine"
...
0
votes
0answers
58 views
JIRA Release Notes - Description field display
I've created a custom release note template for our JIRA install and part of our requirements is to show the Description field as well as a custom field (Implementation Details) that also uses the ...
0
votes
0answers
98 views
Liferay : Templating : How to get doc&media elements of an Asset Publisher
I have an Asset Publisher where a put manually diferent items from my document & media.
Then, I need to display these images in a specific way, therefore, I need to create and assign a template ...
0
votes
0answers
133 views
Velocity - Split function into three separate strings
I have a string (called !myreport.phone) text value that is listed in the following manner:
home: Work: Cell:
The text value may be filled in with home, work, and cell phone numbers (either all ...
