scrap this question. I'm following the camel-example-etl code from the camel
examples instead.
thanks
--
View this message in context:
http://camel.465427.n5.nabble.com/Help-to-re-write-route-tp5741339p5741389.html
Sent from the Camel - Users mailing list archive at Nabble.com.
No quite. I know that If I want to create a separate class for the route i
can do this...
public class MyRouteBuilder extends RouteBuilder {
@Override
public void configure() throws Exception {
from("file:src/data?noop=true")
.split(stax(Recor
AehmAre you asking how to get your route into its own class
so that you could use it in a container ?
Andreas
On 10/11/2013 01:22 PM, richie.rivi...@gmail.com wrote:
Hi guys,
I was wondering if someone could give me some help out how to re-write this
camel test into a proper camel program.