On Fri, Jan 7, 2011 at 5:38 PM, Christian Schneider
wrote:
> Hi all,
>
> I would like to send an object to a jms queue using camel.
> While I know I can do:
>
> �...@endpointinject(uri="jms:foo.bar")
> ProducerTemplate producer;
>
> producer.sendBody(book);
>
> The problem with the above code is
Hi all,
I would like to send an object to a jms queue using camel.
While I know I can do:
@EndpointInject(uri="jms:foo.bar")
ProducerTemplate producer;
producer.sendBody(book);
The problem with the above code is that I have camel in the business logic. So
I would like to use an interface