Re: Spring DSL vs Java DSL

2011-10-13 Thread Tim
Hey Robert. I've been using the pure java dsl for a while now and have not yet found a situation that did not work (of course I don't know the details of what you are trying to do so take my experience with a grain of salt). -Tim On Thu, Oct 13, 2011 at 2:43 PM, Robert J. Liguori wrote: > Is

Re: Spring DSL vs Java DSL

2011-10-13 Thread Tim
oops sry 1 caveat. There's a feature in camel of autodetecting your routes and also of auto injecting your camelcontext. This feature requires spring's context scanning which ATM is not quite available in java and can only be done using spring xml. I think it's something they fixed (are fixing) in

Re: Spring DSL vs Java DSL

2011-10-13 Thread Donald Whytock
Well, I use a combination of DelegateProcessors and dynamically-built Pipelines to modify my routes at runtime; this kind of requires Java DSL. But I suppose the initial construction of the route using the DelegateProcessor could be done in Spring. Don On Thu, Oct 13, 2011 at 8:43 AM, Robert J.