|
Velocity has been edited by Jonathan Anstey (Jan 20, 2009). Content:VelocityThe velocity: component allows you to process a message using an Apache Velocity URI formatvelocity:templateName Where templateName is the classpath-local URI of the template to invoke; or the complete URL of the remote template (eg: file://folder/myfile.vm
HeadersCamel will store a reference to the resource in the message header in the key org.apache.camel.velocity.resource. The Resource is an org.springframework.core.io.Resource object. In Camel 1.4 headers set during the velocity evaluation is returned to the message and added as headers. Then its kinda possible to return values from Velocity to the Message. An example: Set the header value of fruit in the Velocity template .tm: $in.setHeader('fruit', 'Apple')
The header 'fruit' is now accessible from the message.out.headers. Velocity ContextCamel will provide exchange information in the Velocity context (just a Map). The Exchange is transfered as:
Hot reloadingThe velocity template resource is by default hot reloadable for both file and classpath resources (expanded jar). Setting the contentCache=true then Camel will only load the resource once, and thus hot reloading is not possible. This scenario can be used in production usage when the resource never changes. SamplesFor example you could use something like from("activemq:My.Queue"). to("velocity:com/acme/MyResponse.vm"); To use a velocity template to formulate a response for a message for InOut message exchanges (where there is a JMSReplyTo header). If you want to use InOnly and consume the message and send it to another destination you could use from("activemq:My.Queue"). to("velocity:com/acme/MyResponse.vm"). to("activemq:Another.Queue"); And to use content cache, eg. for production usage where the .vm template never changes: from("activemq:My.Queue"). to("velocity:com/acme/MyResponse.vm?contentCache=true"). to("activemq:Another.Queue"); And a file based resource: from("activemq:My.Queue"). to("velocity:file://myfolder/MyResponse.vm?contentCache=true"). to("activemq:Another.Queue"); The Email SampleIn this sample we want to use Velocity as templating for an order confirmation email. The email template is laid out in Velocity as: Dear ${headers.lastName}, ${headers.firstName}
Thanks for the order of ${headers.item}.
Regards Camel Riders Bookstore
${body}
And the java code: An error occurred: http://svn.apache.org/repos/asf/activemq/camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityLetterTest.java. The system administrator has been notified.See Also |
Unsubscribe or edit your notifications preferences
