I use speed to merge a string (template) with a type field
hi there I'am ${name},
And I'am ${age} old.
Speedmerged the field ${name}and ${age}with a hash table view:
velocityEngine.evaluate(context, writer, "", template);
context- hash table (or better a VelocityContext)
I want Velocity not to be able to find the field in the context that it just deletes.
can i do this with a property or something else?
source
share